Tagged Questions
Dynamic binding (aka dynamic dispatch) is the process of mapping a message to a specific piece of code (method) at runtime.
31
votes
9answers
15k views
Java dynamic binding and method overriding
Yesterday I had a two-hour technical phone interview (which I passed, woohoo!), but I completely muffed up the following question regarding dynamic binding in Java. And it's doubly puzzling because I ...
10
votes
7answers
79k 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 ...
9
votes
3answers
132 views
What are good examples of using 'binding' in clojure?
I understand that the binding form allows rebindable dynamic scoping in clojure. So far the only uses I've seen it used for is for I/O such as with print where *out* is rebound to what ever writer you ...
6
votes
6answers
388 views
Question about Java overloading & dynamic binding
In the code below, how does first and second print statements print out SubObj??
Do top and sub point to the same Sub class?
class Top {
public String f(Object o) {return "Top";}
}
class Sub ...
6
votes
3answers
659 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:
...
5
votes
1answer
5k views
Dynamically binding lists with Spring's form tag
I have a command object FaxForm and it holds a list of FaxStatus objects inside a faxStatusList property.
public class FaxForm {
private List<FaxStatus> faxStatusList;
public void ...
5
votes
3answers
1k views
DLR return type
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
4answers
1k views
How do I use a common log4net reference in assemblies loaded at runtime?
I have a single-threaded application that loads several assemblies at runtime using the following:
objDLL = Assembly.LoadFrom(strDLLs[i]);
I would like the assemblies loaded in this manner to use ...
4
votes
6answers
162 views
When to mark a function in C++ as a virtual?
Because of C++ nature of static-binding for methods, this affects the polymorphic calls.
From Wikipedia:
Although the overhead involved in this dispatch mechanism is low, it
may still be ...
4
votes
2answers
152 views
interface paradigm performance (dynamic binding vs. generic programming)
While at their core dynamic binding and templates are fundamentally different things, they can be used to implement the same functionality.
Code example (only for reference)
A) dynamic binding
...
3
votes
1answer
72 views
Can I call an overridden method from the super of the super?
Assume that I have these three classes:
class Foo {
void fn() {
System.out.println("fn in Foo");
}
}
class Mid extends Foo {
void fn() {
System.out.println("fn in Mid");
...
3
votes
5answers
132 views
Is there anything static about python function / method invocations?
In asking a question about reflection I asked:
Nice answer. But there is a difference between saying myobject.foo() and x = getattr(myobject, "foo"); x();. Even if it is only cosmetic. In the ...
3
votes
5answers
4k 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 & ...
2
votes
3answers
78 views
Invoking virtual function and pure-virtual function from a constructor
When i invoke a virtual function from a base constructor, the compiler does not give any error. But when i invoke a pure-virtual function from the base class constructor, it gives compilation error.
...
2
votes
0answers
68 views
Explanation on why a constructor cannot be virtual based on study : Correct the mistakes if any [closed]
I did some study to find out why a constructor cannot be virtual. I am consolidating my understanding here.
I will first explain what is a virtual function and then explain why a constructor cannot ...
2
votes
2answers
210 views
Difference between Static binding and Dynamic binding of Array
I've just read through all the search result about the same topic I'm asking right now in stackoverflow and it's not really answer my curiosity.But here's the thing.
The Question
1.)From what i know ...
2
votes
4answers
313 views
Why do some languages prefer static method binding rather than dynamic? [closed]
Why is the default decision in C++, C#, and Ada 95 to use static method binding, rather than dynamic method binding.?
Is the gain in implementation speed worth the loss in abstraction and ...
2
votes
2answers
217 views
how is the connection between signal and slot made in QT?
I have been a Qt programmer for quite some time now and i understand most of the general features of Qt. I am still confused about how the connect statement connects a signals to a slot at run time. ...
2
votes
3answers
285 views
2
votes
2answers
103 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
2answers
52 views
Binding type for a non-overriden virtual function
Consider the case where a virtual function in base class is not
overriden in the derived class. Then using a base class pointer to a
derived class objectthe virtual function is invoked.
I ...
1
vote
4answers
94 views
Using the power of virtual functions
Consider the following sample code:
class Base {
public:
void f();
virtual void vf();
};
class Derived : public Base {
public:
void f();
void vf();
};
#include <iostream>
...
1
vote
2answers
80 views
Stuck in understanding dynamic binding in Objective-c
I have just started learning Objective-C, I am reading Programming in Objective-C 3rd Edition by Stephen G. Kochan.
There's a paragraph explaining the polymorphism mechanism:
At runtime, the ...
1
vote
3answers
75 views
In java, if a method NOT inherited by any subclass is called, whether dynamic binding or static binding is used?
In java, if a method NOT inherited by any subclass is called, whether dynamic binding or static binding is used?
I know it won't make any difference to the output in this particular case, but just ...
1
vote
3answers
109 views
Which methods are dynamically bound in Java?
What the question says, which methods are dynamically bound in Java?
Coming from C++, if I am not mistaken, most methods are statically bound with a few exceptions.
1
vote
1answer
167 views
How to dynamically bind a run's background brush to a resource?
In my app.xaml:
<Application.Resources>
<SolidColorBrush x:Key="colorBrush1" Color="Orange" Opacity="1"/>
<SolidColorBrush x:Key="colorBrush2" Color="Green" Opacity="1"/>
...
1
vote
2answers
275 views
Load function at runtime in C++
I have following problem:
My program should decide at runtime to load an function (in this case GetExtendedTcpTable()) or not, because the method is not available in Windows 2000!? (can't start the ...
1
vote
3answers
210 views
How is dynamic binding implemented in Java?
I am aware that in C++, there is a virtual pointer in each instance pointing to a virtual table. But how is dynamic binding implemented in Java?
1
vote
2answers
317 views
Objective-C Late Static Binding
I'm teaching myself Objective-C as a guilty pleasure, if you would. I have a self-proclaimed strong grasp of the Java language, so it's not a terribly difficult transition – it sure is fun though. But ...
1
vote
3answers
331 views
.NET4: How to apply dynamic binding to anonymous delegates with returns?
class MyClass
{
public event Action<string> OnAction;
public event Func<string, int> OnFunc;
}
class Program
{
static void Main(string[] args)
{
MyClass mc = new ...
1
vote
1answer
857 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 ...
0
votes
3answers
38 views
Pointer to base class sub-object. Which version of virtual function is invoked?
In dynamic binding, the function call is bound to the function implementation based on the type of object to which the pointer is pointing to.
Suppose we have the following code :
base *bptr = new ...
0
votes
3answers
49 views
Use of C++ templates with dynamic binding class
In the past I have used both templates and dynamic binding in C++, however recently I attempted to use them together and found that it was impossible to compile.
What I am trying to do is something ...
0
votes
5answers
80 views
O'Reilly's “Objective-C Pocket Reference” claims C++ doesn't support Dynamic Dispatch, is this true?
On page 4, it says:
Objective-C decides dynamically--at run-time--what code will handle a message by searching the receiver's class and parent classes. (The Objective-C runtime caches the search ...
0
votes
1answer
53 views
How to do dynamic binding for elements which use converter?
I am developing silverlight web part using client object model. I have one converter in my project as follows
public class ForeGroundConverter : IValueConverter
{
public ...
0
votes
0answers
23 views
jQuery - Dynamic rebinding
I'm building a small test case in which I load a series of XML files based on the hash in the URL that contain HTML and script data. URL examples might be my.site/#index which would load index.xml, ...
0
votes
1answer
56 views
Question about dynamic binding, Objective C and methods
According to Apple's Objective C guide, methods with the same name all use the same selector and that they need to have the same return type as well as parameters.
Then there is something about ...
0
votes
1answer
157 views
Bind TabIndex property of WPF dynamically
i need to create below mention code at runtime in Wpf i.e.
create AutoCompleteBox dynamically set size, width, location etc dynamically.
Then set TabIndex dynamically.
How to do this.
...
0
votes
2answers
181 views
Multi level Nested TreeView with Dynamic Binding in WPF
I am trying to create an application in which i require to display employees and their departments in the treeview kind of structure as below :
Employee1
Department
Dept1
Dept2
Employee2
...
0
votes
1answer
206 views
Using AppDomain.CreateInstanceAndUnwrap to create an instance of type T and then early binding to a method of type T
In the MSDN documentation for the AppDomain.CreateInstanceAndUnwrap method, it states as a note
If you make an early-bound call to a method M of an object of type T1 that was returned by ...
0
votes
1answer
243 views
Java best practice library creation for flexible class creation (Factory Pattern, abstraction, and interfaces)
Imagine I am a Java software developer for a car manufacturer. I have been tasked with creating a library that will be used by numerous in-house applications. For each type of car model manufactured, ...
0
votes
1answer
241 views
How to display data which is of different width in single ListBox in silverlight?
I am developing window phone 7 application. I am new to the window phone 7 application. I am binding the data dynamically to the TextBlock inside the ListBox. I am using the following code to display ...
0
votes
1answer
338 views
dynamic binding with generic type
i need to bind dynamic a parametic type (List) but i dont get it right...
here is an overview of my classes:
public abstract interface SettingsField<A> extends Window
then i have some classes ...
0
votes
1answer
213 views
How to add custom events dynamically with jQuery?
I am creating a system where content is loaded dynamically from a json file. The json file describes the content which is created by jQuery. I am trying to add events dynamically. It is working, but ...
0
votes
2answers
80 views
How to resolve bindings during execution with embedded Python?
I'm embedding Python into a C++ application. I plan to use PyEval_EvalCode to execute Python code, but instead of providing the locals and globals as dictionaries, I'm looking for a way to have my ...
0
votes
2answers
546 views
C++ function overloading and dynamic binding compile problem [closed]
Possible Duplicates:
C++ method only visible when object cast to base class?!
Why does an overridden function in the derived class hide other overloads of the base class?
#include ...
0
votes
2answers
1k 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
407 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?