-2
votes
1answer
35 views

Java Beginner Help Virtual Methods [closed]

I am a student in an OOP class, this is the first time I have ever actually worked with coding in Java and my head is spinning a bit. My project is incomplete but only because I cannot seem to find ...
-5
votes
0answers
64 views

C++ overloaded method, method of parent class does not deliver correct result [closed]

struct AAA { int a;}; struct BBB : AAA{ int b;}; class A{ protected: AAA* tls; public: virtual void set(); }; class B : public A{ protected: BBB* tls; public: B(uint32_t _thread_num) ...
0
votes
3answers
40 views

C++ Calling a non-virtual method from an implemented virtual class

i have an interface that also has a normal method, how do i call that then? class Animal{ virtual void virtualFunction()=0; } class Cow : Animal{ virtual void virtualFunction(){} void ...
1
vote
6answers
66 views

C++ virtual method confusion

I have a basic C++ question about inheritance and virtual methods. Please regard this code: #include <iostream> #include <vector> using namespace std; class A { public: virtual void ...
2
votes
4answers
107 views

Is it OK to call abstract method from constructor in Java?

Let's suppose I have an abstract Base class that implements Runnable interface. public abstract class Base implements Runnable { protected int param; public Base(final int param) { ...
48
votes
5answers
2k views

Should I mark all methods virtual?

In Java you can mark method as final to make it impossible to override. In C# you have to mark method as virtual to make it possible to override. Does it mean that in C# you should mark all methods ...
0
votes
3answers
61 views

Different ways to call Virtual Methods [duplicate]

Possible Duplicate: C++: Accessing Virtual Methods I'm trying to use the virtual method table to call functions by index in a class... Suppose we have the following code: class Base { ...
3
votes
4answers
116 views

C++: Accessing Virtual Methods

I'm trying to use the virtual method table to call functions by index in a class... Suppose we have the following code: class Base { public: Base() {} virtual ~Base() {} virtual Base* ...
3
votes
5answers
120 views

Is there any way to know if the non-pure virtual function has been implemented by the derived class in C++?

I am creating a class which is callback based. I need to give the client a freedom to invoke the callback that he defines. For example, I have a class Base: class Base { ... public: virtual void ...
1
vote
1answer
175 views

Virtual Method logic not working C# .NET 4.0

I'm working through an example in the bookPro C# and the .NET Platform and I'm making a mistake somewhere that I can't see. The program compiles and runs, but the Manager object in this example isn't ...
3
votes
2answers
90 views

Is member function virtual by default

Is member function virtual by default in scala? Is it different than Java in this matter? When a method is overriden you have to explicitly state that, but there is no "virtual".
2
votes
2answers
767 views

Class has virtual method but non virtual destructor C++ [duplicate]

Possible Duplicate: GNU compiler warning “class has virtual functions but non-virtual destructor” I am writing an interface for two classes and I get the warning in the title. ...
0
votes
1answer
170 views

Overriding base template class method

How do you override a base templatized class method (that is, a template class with a non-template method) in a child? #include <Windows.h> #include <iostream> struct S{}; template ...
0
votes
2answers
157 views

Is void f() = 0 a virtual method?

Kind of a noob doubt here (another one from me :P ) Regarding a book I'm reading: One Abstract Base-Class(ABC) is so by the declaration of a pure virtual method. What makes a method a pure virtual ...
0
votes
4answers
49 views

C++ Using a overriden method after passing as superclass

If I have a C++ function/method, for example: getSound(Animal a){ a.printSound(); } and then pass it a Dog object that extends the class Animal but overrides Animal's printSound() method, is ...
1
vote
2answers
2k views

Simulate abstract classes and abstract methods in Objective C? [duplicate]

Possible Duplicate: Creating an abstract class in Objective C In Java I like to use abstract classes to make sure that a bunch of classes has the same basic behavior, e.g.: public abstract ...
3
votes
2answers
130 views

C++ virtual method not working

Given the following example: class BaseClass { BaseClass() { }; virtual ~BaseClass() { this->Cleanup(); }; virtual void Cleanup() { // Do cleanup here. }; }; class ...
2
votes
4answers
341 views

How to enforce a static member on derived classes?

I have a base class, Primitive, from which I derive several other classes--Sphere, Plane, etc. Primitive enforces some functionality, e.g intersect(), on its subclasses through pure virtual ...
1
vote
1answer
68 views

Implementation of pure virtual method with/without virtual?

If I have an AbstractClass with a "virtual void Method()=0". What is the difference if a DerivedClass defines the implementation as "virtual void Method() { }" or simply "void Method() { }" ?
5
votes
2answers
84 views

Calling identically named methods in base classes

Base class A has a subclass B, and B has a subclass C. A implements a virtual method doStuff(), B does not, and C does. From C, I want to call A's implementation of doStuff() (I do this from within ...
1
vote
1answer
430 views

Overriding method from dll

There is a virual method in a .dll that my C# prodject references, how can I overide a method from a dll? Example: namespace TheDll { class SomeClass { public virual void TheMethod() ...
0
votes
5answers
108 views

Are virtual methods for methods that are not created until runtime?

I have had a bit of trouble understanding the purpose of a virtual method in C++. Does a method have to be virtual if its object is not created at compile time? For example, if you had to pick a farm ...
7
votes
1answer
150 views

Alternatives to vtable

Vtables are ubiquitous in most OO implementations, but do they have alternatives? The wiki page for vtables has a short blurb, but not really to much info (and stubbed links). Do you know of some ...
8
votes
10answers
594 views

When should a virtual method be pure?

I have found some code that I am working on, and was wondering what the best design implementation is. If a base class defines a method as virtual, but implements an empty body as well, thus not ...
9
votes
2answers
302 views

Overload resolution of virtual methods

Consider the code public class Base { public virtual int Add(int a,int b) { return a+b; } } public class Derived:Base { public override int Add(int a,int b) { return a+b; ...
8
votes
4answers
379 views

Virtual methods on a virtual base class

Something that has been confusing me about virtual base class inheritance... Given the following classes: class A { virtual void foo() = 0; } class B : virtual A { void foo() { /* do X */ } } ...
4
votes
4answers
172 views

Virtual methods whose type is known at compile-time

If I do something like: Dog dog; //class with virtual methods Cat cat; //class from same base as Dog dog.eat(); //call virtual method cat.eat(); //call virtual method Then the eat()s will be ...
12
votes
10answers
965 views

When is it appropriate to use virtual methods?

I understand that virtual methods allow a derived class to override methods inherited from a base class. However, when is it appropriate/inappropriate to use virtual methods? It's not always known ...
3
votes
3answers
670 views

Virtual Functions C#

I understand what a virtual function is. But what I don't get is how do they work internally? class Animal { virtual string Eat() { return @"Eat undefined"; } } class Human : ...
18
votes
6answers
7k views

Implement a pure virtual method in Objective-C

I want to go to there. Seriously though, how does one implement a pure virtual method in an "Apple" way? Do you use a Protocol with your base class and throw exceptions on those methods?
3
votes
2answers
546 views

Is it possible to finalize a virtual method in C#?

By that I mean, it is possible to mark a virtual method in C# as final so no other types deriving from this type, can override it ever again?
2
votes
2answers
910 views

why virtual is allowed while implementing the interface methods?

I have one specific query with the interfaces. By default interface methods are abstract and virtual so if we implement that interface and gives definition in the class we actually override that ...
1
vote
7answers
521 views

How to check if C++ abstract method is defined at runtime

How to check if C++ abstract method is defined at runtime class ABase{ public: virtual void do1() = 0; }; class BBase: public ABase{ public: virtual void do1(){} }; class CBase: public ABase{ ...
4
votes
7answers
293 views

Should methods that implement pure virtual methods of an interface class be declared virtual as well?

I read different opinions about this question. Let's say I have an interface class with a bunch of pure virtual methods. I implement those methods in a class that implements the interface and I do not ...
30
votes
6answers
13k views

Why are C# interface methods not declared abstract or virtual?

C# methods in interfaces are declared without using the virtual keyword, and overridden in the derived class without using the override keyword. Is there a reason for this? I assume that it is just ...
3
votes
5answers
670 views

C++: Force the order of functions in the virtual method table?

How can i control the order of virtual functions in the virtual table? Are they laid out in the same order that they are declared in? When inheriting a class with a virtual table, is the virtual ...
1
vote
3answers
85 views

VSC++, virtual method at bad address, curious bug

This guy: virtual phTreeClass* GetTreeClass() const { return (phTreeClass*)m_entity_class; } When called, crashed the program with an access violation, even after a full recompile. All member ...
9
votes
5answers
3k views

Calling the overriden method from the base class in C#

Given the following C# class definitions and code: public class BaseClass { public virtual void MyMethod() { ...do something... } } public class A : BaseClass { public ...
0
votes
3answers
243 views

Calling a subclassed virtual method from a base class method

class A { public: virtual void doSomething(void) {} void doStuff(void) { doSomething(); } }; class B : public A { public: void ...
2
votes
3answers
3k views

Pure virtual method called

I understand why calling a virtual function from a constructor is bad, but I'm not sure why defining a destructor would result in a "pure virtual method called" exception. The code uses const values ...
0
votes
2answers
135 views

Is there a way to automaticly call all versions of an inherited method?

I'm writing a plug-in for a 3D modeling program. I have a custom class that wraps instances of elements in the 3D model, and in turn derives it's properties from the element it wraps. When the element ...
15
votes
5answers
2k 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 ...
4
votes
10answers
319 views

How virtual is this?

can you explain me why: int main (int argc, char * const argv[]) { Parent* p = new Child(); p->Method(); return 0; } prints "Child::Method()", and this: int main (int argc, char * ...
3
votes
3answers
3k views

How to Implement a Base Class with a Method and yet force the Derived Class to Override it?

Having something like this this : public abstract class AAA { protected abstract virtual string ToString() // Error { // Base Stuff } } public abstract class BBB : AAA { public ...
13
votes
7answers
7k views

C# virtual static method

Why is static virtual impossible? Is C# dependent or just don't have any sense in the OO world? I know the concept has already been underlined but I did not find a simple answer to the previous ...
4
votes
8answers
997 views

Is there any automated way to implement post-constructor and pre-destructor virtual method calls?

Due to the well-known issues with calling virtual methods from inside constructors and destructors, I commonly end up with classes that need a final-setup method to be called just after their ...
1
vote
2answers
547 views

Why do Rhino.Mocks and Moq say that Bar is a non-overridable member?

Could someone explain why both tests using the latest versions of Moq and Rhino.Mocks frameworks fail complaining that Bar is not a virtual/overridable method: public interface IFoo { string ...