Tagged Questions

1
vote
3answers
151 views

DLR return type

hi. I need some DLR help. I am implementing an IDynamicMetaObjectProvider and DynamicMetaObject but I am having some issues getting the expected return type. I am overiding BindInvokeMember in the …
5
votes
3answers
269 views

Dynamic binding seems like a lie.

Objective-C uses dynamic binding: that is method calls are resolved at runtime. Fine. And use of dot notation really boils down to a method call But, why then, can't I do something like this: …
0
votes
2answers
63 views

Objective-C uses dynamic binding, but how?

I know that Objective-C uses dynamic binding for all method calls. How is this implemented? Does objective-c "turn into C code" before compilation and just use (void*) pointers for everything?
0
votes
1answer
87 views

What is the difference between c++ dynamic binding and java dynamic binding?

What is the difference between c++ dynamic binding and java dynamic binding?
2
votes
2answers
42 views

How to bind some function to non exist element?

My problem: after load some element via ajax, i bind some on-click function, but when user will load few times that same element, binded action will be repeat (not replace, at least that it looks …
1
vote
1answer
78 views

How do I define dynamic and just-in-time bindings with Guice?

I am trying to use Guice for a test framework based on TestNG. This frameworks analyzes the test class for dependencies and provides them eliminating the need to build them in tests. Guice is all …
1
vote
3answers
7k views

ASP.NET 3.5 GridView - row editing - dynamic binding to a DropDownList

This is driving me crazy :-) I'm trying to get a ASP.NET 3.5 GridView to show a selected value as string when being displayed, and to show a DropDownList to allow me to pick a value from a given list …
2
votes
5answers
493 views

Dynamic Binding in C++

I need some clarification on dynamic binding in C++ .I'm confused about the following: In C you can have an array of function pointers & assign different functions of the same signature & …