Tagged Questions
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
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
3answers
285 views
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
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 ...
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
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
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?