Tagged Questions
The virtual-method tag has no wiki summary.
16
votes
5answers
283 views
Overload resolution and virtual methods
Consider the following code (it's a little long, but hopefully you can follow):
class A
{
}
class B : A
{
}
class C
{
public virtual void Foo(B b)
{
...
13
votes
5answers
1k views
C++ Style: Prefixing virtual keyword to overridden methods
I've been having a discussion with my coworkers as to whether to prefix overridden methods with the virtual keyword, or only at the originating base class.
I tend to prefix all virtual methods (that ...
13
votes
7answers
2k views
Calling virtual functions inside constructors
Suppose I have two C++ classes:
class A
{
public:
A() { fn(); }
virtual void fn() { _n = 1; }
int getn() { return _n; }
protected:
int _n;
};
class B : public A
{
public:
B() : A() {}
...
9
votes
5answers
726 views
Why does Java's invokevirtual need to resolve the called method's compile-time class?
Consider this simple Java class:
class MyClass {
public void bar(MyClass c) {
c.foo();
}
}
I want to discuss what happens on the line c.foo().
Original, Misleading Question
Note: Not all ...
8
votes
5answers
315 views
Why virtual function can't be unimplemented when allocated with 'new'?
struct A
{
virtual void foo(); // unused and unimplemented
virtual void bar () {}
};
int main ()
{
A obj; // ok
obj.bar(); // <-- added this edition
A* pm = ...
7
votes
6answers
140 views
Interface, Abstract, or just virtual methods?
I have a bunch of systems, lets call them A, B, C, D, E, F, G, H, I, J.
They all have similar methods and properties. Some contain the exact same method and properties, some may vary slightly and ...
7
votes
3answers
852 views
overriding protected internal with protected!
This is an extension for this question asked an hour ago.
We cannot modify the access modifiers, when overriding a virtual method in derived class. Consider Control class in System.Web.UI namespace
...
6
votes
8answers
406 views
C++: Why does a struct\class need a virtual method in order to be polymorphic?
Following this question, I'm wondering why a struct\class in C++ has to have a virtual method in order to be polymorphic.
Forcing a virtual destructor makes sense, but if there's no destructor at ...
6
votes
3answers
173 views
c++ heavy data processing and paging
I'm writing an application that should process large ammounts of data (between 1-10 GB) as realtime as possible.
the data is present in multiple binary data files on harddisk, each between few kb ...
5
votes
3answers
126 views
Member template functions cannot be virtual - workaround?
I understand why member template functions cannot be virtual, but I'm not sure what the best workaround is.
I have some code similar to this:
struct Entity
{
template<typename It>
...
5
votes
3answers
85 views
does it makes sense a virtual template method?
Suppose a construct like this:
class Interface
{
public:
template <typename T>
virtual void reportOperationError(T code , std::string message) = 0;
};
i don't understand the use case ...
5
votes
2answers
398 views
C++ call virtual method in child class
i have the following classes:
class A {
protected:
A *inner;
public:
....
virtual void doSomething() = 0;
....
}
class B: public A {
...
void doSomething() {
if(inner ...
5
votes
8answers
454 views
How to Avoid Calling Viritual Methods from a Base Constructor
I have an abstract class in a library. I'm trying to make it as easy as possible to properly implement a derivation of this class. The trouble is that I need to initialize the object in a three-step ...
3
votes
7answers
97 views
overriding a function c#
I was just trying to master the concept of virtual function using a console app. I noticed as soon as I override a base class function, return baseclassname.functionname(parameters) gets inserted in ...
3
votes
5answers
125 views
C#: Any way to skip over one of the base calls in polymorphism?
class GrandParent
{
public virtual void Foo() { ... }
}
class Parent : GrandParent
{
public override void Foo()
{
base.Foo();
//Do additional work
}
}
class Child : ...
3
votes
2answers
182 views
Does virtual inheritance and virtual function use the same vtable?
There is one little related question. But the topic is entirely different.
Now, one concept is about the function resolution and another is about class resolution ? I am wondering that how is it ...
3
votes
3answers
298 views
C++ virtual function undefined at link time - why?
I'm having a bit of trouble using virtual functions in C++, and I might be misusing them in a constructor. The problem is that when linking a component lib (written by me) into my final executable, a ...
3
votes
2answers
91 views
Abstract/Virtual Members to Provide Common & Derived Combined Functionality - C#
I've done this before - just can't remember the trick.
If i have an abstract class:
public abstract class Post
And a set of deriving classes:
public class Photo : Post
I want to force the ...
2
votes
3answers
100 views
When is it safe to call a virtual function in a constructor
I have some code where I really want to call a virtual method from a constructor. I know this is considered unsafe, and I know enough about object construction to also understand why. I also am not ...
2
votes
5answers
169 views
How to detect if virtual method is overridden in c#
Is it possible to determine if a virtual method has been overridden:
class ABase {
public void DoSomething(object p)
{
p.Process();
if( /* DoSomethingExtra is implemented */ )
...
2
votes
2answers
71 views
pure virtual declarations in subclasses
i have a a couple c++ interfaces like this:
struct IThese {
virtual void doThesethings() = 0;
}
struct IThose : public IThese {
virtual void doThoseOtherThings() = 0;
}
Notice that IThose ...
2
votes
5answers
90 views
does it make sense to inherit privately from an abstract (pure virtual) class?
suppose this construct
struct InterfaceForFoo
{
virtual void GetItDone() = 0;
};
class APoliticallyCorrectImplementationOfFooRelatedThings : private InterfaceForFoo
{
public:
void ...
2
votes
2answers
193 views
Why doesn't C# support explicitly implemented virtual methods?
Interface methods in C# can be implemented explicitly, so that their implementation is invoked when an instance is explicitly cast to the interface type. Why is this not also supported on virtual ...
2
votes
2answers
243 views
Python - how to implement virtual methods?
I know virtual methods from php or java.
How can be implemeted this method in python?
Or I have to define empty method in abstract class and rewrite it?
2
votes
2answers
277 views
Virtual Constructor Idiom - Virtuous Or Complete Utter Fallacy
One of the golden rules in C++ is that the life-time of an instance begins when its constructor completes successfully and ends when its destructor begins.
From this rule we conclude that it is NOT a ...
2
votes
3answers
181 views
c# override key word
I want to know if i don't put override key word before the method in derived class method m1(), then what is the default value before this, or will it throw a compile time error?
class A { virtual ...
2
votes
3answers
349 views
Non virtual methods in Java
Just starting to use Java. I find a lot of similarities with .NET, but I see that all methods in Java are virtual by default.
So the question is what can I do to make them non virtual ? Is the final ...
2
votes
5answers
311 views
C# virtual methods question
There is a thing I do not understand well: when virtual method is called, the base method is called as well?
Because when I use public override WinForm OnPaint method, in its body base.OnPaint(e) is ...
2
votes
2answers
149 views
Ramifications of Virtual Methods/Properties
Ola the 'flow!
I have been using Moq recently in my development process and I like what I am able to achieve.
However, I find myself making my methods (and properties for the mostpart) virtual so ...
1
vote
2answers
107 views
override c++ virtual method
I have a class template where some methods are defined as virtual to give the ability for the user of my class to give an implementation for them in his derived class. Note that in my template class ...
1
vote
1answer
171 views
Boost python wrapping a virtual method
I'm using boost python to create a binding to a c++ library. A number of classes in this library have virtual methods which accept iterator/const_iterator types as arguments. I don't particularly want ...
1
vote
2answers
94 views
what is the advantage of a c++ class having static methods with exact same signature as the interface methods
What is the advantage of defining static methods with exact same signature as the interface method in the class which implements it .
class IInterface
{
public:
virtual void fn()=0;
}
class Impl ...
1
vote
2answers
77 views
Private Inheritance: How do I make object of the Base Class ( which has got pure virtual methods)?
Consider the following code:
class Base
{
protected:
virtual void methodDefinedInBase() = 0;
}
Class Derived: private Base
{
public:
void someMethod();
protected:
virtual void ...
1
vote
4answers
294 views
Using reflection to override virtual method tables in C#
Is there a way to change the virtual methods tables in C#? like change where a virtual method is pointing?
class A
{
public virtual void B()
{
Console.WriteLine("B");
}
}
class ...
1
vote
1answer
177 views
C++ virtual function not found
I have a class designed to do import/export of data in one of a few different formats. Each format should have exactly the same interface, so I'm implementing it as a base class with a bunch of ...
1
vote
5answers
364 views
How to implement an interface explicitly with a virtual method?
I can't do this
interface InterfaceA
{
void MethodA();
}
class ClassA : InterfaceA
{
virtual void InterfaceA.MethodA()
// Error: The modifier 'virtual' is not valid for this item
{
...
1
vote
2answers
308 views
Calling descendant virtual methods from static method
First let's establish this.
I have
public abstract class Foo
{
public static void StaticMethod()
{
}
}
public class Bar : Foo
{
}
is it valid to call
Bar.StaticMethod();
???
If so, let's ...
0
votes
1answer
29 views
C# OO Design: case when only ONE abstract method is needed
I have 2 classes that have the exact same logic/workflow, except in one method.
So, I created a abstract base class where the method that differs is declared as abstract.
Below is some sample code ...
0
votes
0answers
12 views
What are suggestions for using virtual methods?
I was reading a post jon skeet wrote called inheritance tax. It reminded me of something i heard long ago but forgotten. It had something to do with how to use virtual methods and not fall into that ...
0
votes
1answer
26 views
C# MRDS: Why are the handlers virtual?
Can somebody familiar with microsoft robotics studio please explain why the handler operations are virtual and some are set as non-virtual ?
[ServiceHandler(ServiceHandlerBehavior.Concurrent)]
public ...
0
votes
5answers
81 views
Should virtual dispatch happen when a virtual method is called within a virtual method using object?
struct B
{
virtual void bar () {}
virtual void foo () { bar(); }
};
struct D : B
{
virtual void bar () {}
virtual void foo () {}
};
Now we call foo() using an object of B as,
B obj;
...
0
votes
3answers
126 views
C++ virtual method problem
I have two structs, in which I'm trying to overwrite a method in the base struct.
The base struct is defined as:
template <class T>
struct compareFunction : public ...
0
votes
6answers
185 views
Pure Virtual Methods with Different Datatypes
I'm making a base class for my container classes to derive from so I can maintain a consistent interface. It currently looks something like this:
template <typename Datatype>
class BaseClass
{
...
0
votes
3answers
93 views
C++ Debugging “smell”
I was debugging an odd problem where an objects VMT suddenly seemed to point to the base object's methods.
class Base
{
virtual void foo() {}
}
class Derived: public Base
{
void foo() {}
}
...
0
votes
2answers
135 views
Calling an overridden method from base constructor
We have a class like this:
class LogAnalyzer
{
protected IExtensionManager manager;
public LogAnalyzer()
{
GetManager();
}
protected virtual ...
0
votes
1answer
98 views
C++ calling child virtual member from parent virtual member
I create a parent class that calls it's own virtual member. But this virtual member is overridden by child class.
class Parent {
public:
void doSomething() {
doVirtual();
}
protected:
...
0
votes
7answers
235 views
Which is faster, a function call with a lock, or a virtual call?
I have a class which doesn't currently need to be thread-safe, but in future we might want to make a thread-safe version. The way I see it, I can either make it thread-safe now by putting locks ...
0
votes
2answers
482 views
vtables for derived, concrete, classes
If I have one base class and I derive 10 different concrete derived classes from it then will each and every concrete derived class have a different vtable?
0
votes
4answers
685 views
Improving Comparable<T> compareTo performance
I profiled my code and found out that my class, which implements Comparable<T>, spends 8x more cpu time in
compareTo(Object)
than in
compareTo(T)
I assume that the slowdown is because of ...
-1
votes
6answers
95 views
What functions need to be virtual in order to output specific items?
Im trying to output the following:
apple
banana
orange
banana
Do I have to make my functions virtual in order to output?
class Red
{
public:
void PrintMe() { Foo(); Bar(); }
void Foo() { ...