Tagged Questions
1
vote
1answer
45 views
Confused about virtual overloaded functions
I am confused about compiler errors regarding the code below:
class Base {
public:
virtual ~Base () { }
virtual void func () { }
virtual void func (int) { }
virtual void another () { }
...
0
votes
4answers
121 views
C# Override virtual function without having to implement another class
I am trying to override a virtual function only for a single defined element (without having to create another class that implements it and then adding a function to override it..).
Example:
public ...
1
vote
1answer
236 views
C++ virtual function + STL container with base class pointers
I have a base class called Base which defines a virtual function. The class Derived now inherits from it and implements/overwrites that virtual function. The following code works just fine:
Base* pB ...
1
vote
2answers
133 views
How override non virtual method?
I have base class with virtual method. And I have child class, which has override this method. Then I have child of child, but how I can override the same method? If I try to add 'virtual' to second ...
0
votes
2answers
94 views
Calling an overridden function from a list of its base class?
Let's say I have an empty class with a virtual function:
class Base
{
public:
virtual void Foo(){std::cout << "this is the base class";}
}
Then I have a class that inherits from Base and ...
1
vote
2answers
83 views
How to reliably call immediate parent's virtual function
Consider this code
class Base
{
public:
virtual void print ()
{
std::cout << "Base::print" << std::endl;
}
};
class BaseA : public Base
{
public:
virtual void ...
2
votes
1answer
174 views
Overriding Direct3D interfaces?
My project launches a target process, injecting a library into it which is meant to hook Direct3D functions. I have done this successfully in the past, but decided to rewrite the library to a closer ...
0
votes
1answer
327 views
Overriding virtual function not working, header files and c++ files
We have a parent class called Student. We have a child class: StudentCS.
Student.h:
#include <iostream.h>
#include<string.h>
#include<vector.h>
#include "Course.h"
class Course;
...
0
votes
2answers
721 views
C# Abstract Class Override method
Using C#.NET4.5 and Visual Studio 2012 Ultimate.
Im currently trying out absract classes with my Label Printing program, Ive Used Interfaces before.
I used Interfaces to De-Couple my two classes, ...
2
votes
1answer
82 views
How to deal with base non-virtual/non-abstract properties when need override and implicit class usage?
I want to track TopMost property changes in my custom forms which are referred as (Form). I cannot use override, because TopMost isn't abstract or virtual, I can't use new keyword because it has no ...
0
votes
1answer
66 views
explicitly new a sealed method
Let's say I have this code:
interface class IFoo
{
public:
void foo();
};
ref class FooBase : public IFoo
{
public:
virtual void foo() sealed = IFoo::foo
{
}
};
I need to define a new ...
3
votes
2answers
91 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".
0
votes
1answer
172 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 ...
2
votes
2answers
194 views
C++ force override
I have some class, like
class object {
public:
virtual std::string name() const;
};
It provides some interface, and I want all derivated to override method name.
Problem is, it is not overriden, ...
15
votes
3answers
344 views
default parameter value in overridden methods
In the following code, call to Method2 receives the Value parameter as False, even though base class does not declare default value for the parameter at all, and derived class declares True as ...
12
votes
2answers
433 views
Override virtual function of base classes, which do not share common interface
#include <iostream>
struct B1
{
virtual void method()=0;
virtual ~B1(){}
};
struct B2
{
virtual void method()=0;
virtual ~B2(){}
};
struct D: B1, B2
{
virtual void method()
...
2
votes
2answers
99 views
Why must the base class object be a reference to call the derived virtual function?
Why must the base class object be a reference to call the derived virtual function ?
#include<iostream>
using namespace std;
class A {
public:
virtual void print() { ...
1
vote
1answer
433 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
2answers
541 views
C++ override final and pure virtual methods
Consider a baseclass for derived classes, where the baseclass is supposed to offer some (polymorphic) methods such as armithmetic or bitweise overloaded operators for all its derivates. This ...
2
votes
2answers
69 views
Changing types passed in to virtual methods
I have a question regarding changing parameter types in virtual methods. First I'll explain the scenario.
This is the base interface for users that can execute commands
public interface ...
0
votes
5answers
329 views
What is the point of Virtual and Override? Doesn't C# Do the same thing without them?
From my understanding, the virtual keyword allows you to use the base class' method, and override allows you to override it in a class that inherits from the base class. My confusion is that I just ...
9
votes
2answers
215 views
How to be warned when overriding a virtual method with wrong visibility
When overriding a virtual method, I noticed that when I make a mistake in the visibility (protected method overridden as a public method), I'm not warned by the compiler.
It is valid C++, but usually ...
4
votes
2answers
227 views
Compiler requirement for override and final
I can remember that during the discussion about general attributes which finally lead to the new contextual keywords override and final it was suggested that compiler support for these ore some may be ...
8
votes
3answers
2k views
override on non-virtual functions
The C++11 FDIS it says
If a virtual function is marked with the virt-specifier override and does not override a member function of
a base class, the program is ill-formed. [ Example:
struct B {
...
1
vote
1answer
176 views
Passing a class containing overridden virtual methods to a dll
I have an application and a dll, both written in Delphi 2006.
I have an class that descends from a base class and overrides several virtual methods.
The class is passed to the DLL via an exported ...
1
vote
5answers
130 views
When creating a derived class in C#, is it possible to overwrite a 0 parameter virtual function with an n parameter function?
I checked out MSDN and a couple other sites but I'm still not sure I got an answer for this. If you have a Parent class with a virtual function Init(), can I then--in the derived class--have an ...
2
votes
4answers
1k views
Redefining a typedef in derived class?
So after searching a lot for an answer to my question, I finally gave up on my Google skills.
I have an base class Base, and a derived class Derived. I want to override a type in the Base class with ...
3
votes
3answers
176 views
In C#, is it ok to virtualize every method?
This may make a lot of C# programmers cringe, but is it ok to virtual-ize every method in a base class -- even if certain methods are never overridden?
The reason I need to do this is that I have a ...
2
votes
3answers
249 views
Virtual override and binary compatibility
I have a library that can be compiled as a shared library (or DLL in Windows). It has a class that is derived from another class in another library. The base class has some virtual methods and my ...
8
votes
2answers
452 views
Multiple (diamond) inheritance compiles without “virtual”, but doesn't with
Given the following code (without virtual inheritance) :
class A
{
public:
virtual void f() = 0;
};
class B : public A
{
public:
virtual void f() {}
};
class C : public A
{
public:
...
4
votes
2answers
454 views
Override contra-variance workaround needed
I'm having difficulty finding the (what I'm sure is a very common) design pattern to work around the following problem. Consider this piece of code:
class AA {};
class BB : public AA {};
class A
{
...
3
votes
2answers
520 views
Real life usage of new keyword to hide virtual method implementation? c#
Whats the real life scenerio where we will use new to privide new implementation for a virtual method in the derived class? C#
I know what it means techinically. what I am looking for is a real life ...
1
vote
4answers
746 views
Method overriding in C#
This is a rather simple question, I have a base class which implements common GUI elements, and a series of child classes which I want to override a given method, so they can implement their own ...
4
votes
5answers
6k views
Confused between virtual, override, new and sealed override
I'm pretty confused between some concepts of OOPS: virtual, override, new and sealed override. Can anyone explain me about the same. Best would be giving an example or a link for the same.
I am ...
0
votes
2answers
259 views
Overriding properties of abstract class
ODS List is a collection of abstract classes that implement a filtered select method for a paged/sorted object datasource. I have defined three absract classes that represent the filter, the returned ...
4
votes
1answer
2k views
override non-virtual functions in C++ 2011
The very new syntax of override allows to let the compiler to report an error, if one does not really override a virtual function N3206.
class Base {
virtual void vfunc();
void afunc();
};
...
5
votes
5answers
937 views
Sealing an interface after implementing it
I am working on a small project and I came across that problem.
The project output is a library containing an interface. I would like to implement that interface and seal the functions in it like ...
3
votes
3answers
1k views
Inheritance and .net xmlSerializer
I have a base class with a virtual property and a derived type that overrides the virtual property. The type can be serialized to xml. What I am trying to do is NOT to persist the List of items ...
3
votes
2answers
580 views
Marking ToString virtual in base class, what happens?
Consider the following (LinqPad) example. ToString in class X is marked virtual. Why is the output here not equal to "Hi, I'm Y, Hi, I'm X" but instead the typename is printed? Of course marking ...
32
votes
4answers
7k views
C++ “virtual” keyword for functions in derived classes. Is it necessary?
With the struct definition given below...
struct A {
virtual void hello() = 0;
};
Approach #1:
struct B : public A {
virtual void hello() { ... }
};
Approach #2:
struct B : public A {
...
9
votes
3answers
3k views
When should you call base.Method() in overridden method, and how to mark this when you write code in team?
When using some framework/api, sometimes it's pretty unclear if you must call base.Method if you override it, for example you can be pretty sure that you should call base.Maethod() when you are ...
-1
votes
3answers
252 views
problem with overriding virtual c# method [closed]
I have the following situation
public interface IFoo
{
void Bar();
}
public class Parent : IFoo
{
public virtual void Bar(){}
}
public class Child : Parent, IFoo
{
public override void ...
0
votes
3answers
265 views
Unable to override virtual c# method
I have the following situation
public interface IFoo
{
void Bar();
}
public class Parent : IFoo
{
public virtual void Bar(){}
}
public class Child : Parent, IFoo
{
public override void ...
3
votes
2answers
968 views
C# Overriding a base class method more than one derived class down inheritance chain
I have an inheritance chain that consists of three classes A,B, and C, where A and B are abstract, and C is a concrete implementation of B.
I have a virtual method on the base abstract class A, ...
5
votes
5answers
2k views
it is possible to change return type when override a virtual function in C++?
I encounter a problems about override virtual functions, in fact,it is about hessian (a web service protocol).
it has a base class Object, and some derived classes : Long,Int,String,...,all derived ...
2
votes
5answers
301 views
How to be sure a method is overriding an existing virtual one in C++?
Let's suppose we have a base class which has a virtual method:
class BaseClass
{
virtual void MethodToOverride() const
{
DoSomething();
}
};
And a derived class which overrides ...
6
votes
2answers
69 views
Is there a way to flag (at compile time) “overriden” methods whose signatures don't match base signature?
Basically, I want the C# compiler functionality of its override keyword in my C++ code.
class Base
{
virtual int foo(int) const;
};
class Derived : public Base
{
virtual int foo(int); // ...
9
votes
10answers
1k views
Can I get polymorphic behavior without using virtual functions?
Because of my device I can't use virtual functions. Suppose I have:
class Base
{
void doSomething() { }
};
class Derived : public Base
{
void doSomething() { }
};
// in any place
{
Base ...
0
votes
2answers
1k views
“C# base class virtual function” - “override in Managed C++ ref class”
I have a .NET_4 Managed C++ ref class that I derive from a .NET_4 base class written in C#.
EXAMPLE::
{
C# BASE CLASS::
namespace Core
{
public class ResourceManager
{
public class _Resource
...
2
votes
2answers
242 views
What is the difference between same-named inherited function and overridden virtual function?
#include <iostream>
using namespace std;
class base
{
public:
void f() {cout << "base" << endl;}
virtual void v() {cout << "base (virtual)" << endl;} ...
