Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
4answers
23k views

Overriding the java equals() method quirk

I ran into an interesting (and very frustrating) issue with the equals() method today which caused what I thought to be a well tested class to crash and cause a bug that took me a very long time to ...
20
votes
1answer
271 views

Cannot resolve an F# method that has been both overridden and overloaded from C#

The following F# code declares base and descendant classes. The base class has a virtual method 'Test' with a default implementaion. The descendant class overrides the base class method and also adds ...
20
votes
3answers
2k views

Why does an overridden function in the derived class hide other overloads of the base class?

Consider the code : #include <stdio.h> class Base { public: virtual void gogo(int a){ printf(" Base :: gogo (int) \n"); }; virtual void gogo(int* a){ printf(" ...
19
votes
4answers
7k views

Can I call a base class's virtual function if I'm overriding it?

Say I have class Foo and Bar set up like this: class Foo { public: int x; virtual void printStuff() { std::cout << x << std::endl; } }; class Bar : public Foo { ...
18
votes
8answers
3k views

C#: Overriding return types

Is there way to override return types in C#? If so how, and if not why and what is a recommended way of doing it? My case is that I have an interface with an abstract base class and descendants of ...
17
votes
6answers
1k views

Best practices regarding equals: to overload or not to overload?

Consider the following snippet: import java.util.*; public class EqualsOverload { public static void main(String[] args) { class Thing { final int x; Thing(int x) ...
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() {} ...
11
votes
4answers
523 views

In C++, is a function automatically virtual if it overrides a virtual function?

I would expect that if foo is declared in class D, but not marked virtual, then the following code would call the implementation of foo in D (regardless of the dynamic type of d). D& d = ...; ...
11
votes
3answers
3k views

Calling a base class's classmethod in Python

Consider the following code: class Base(object): @classmethod def do(cls, a): print cls, a class Derived(Base): @classmethod def do(cls, a): print 'In derived!' ...
9
votes
4answers
147 views

overloading virtual operator -> ()

This is just an experiment code. struct B { virtual B* operator -> () { return this; } void foo () {} // edit: intentionally NOT virtual }; struct D : B { virtual D* operator -> () { ...
9
votes
3answers
268 views

Does F# inherit every type from Object?

The question is simple and. although it is obvious the answer, I had to face a strange situation where the fsharp told me something a bit strange. Here's the story: The question is: Does F# ...
9
votes
4answers
1k views

C# Hiding, overriding and calling function from base class

I'm learning C# and I encountered the following problem. I have two classes: base and derived: class MyBase { public void MyMethod() { Console.WriteLine("MyBase::MyMethod()"); } } ...
9
votes
1answer
554 views

Detecting Overridden Methods in Perl

Last week I was bitten twice by accidentally overriding methods in a subclass. While I am not a fan of inheritance, we (ab)use this in our application at work. What I would like to do is provide ...
7
votes
2answers
114 views

Overloading virtual functions of the same name from different base classes. Is it possible?

The title is probably confusing. Suppose we have the following set up; class A { public: virtual void fn() = 0; }; class B { public: virtual int fn() {}; }; class C: public A, public B { ...
7
votes
3answers
1k views

c++ virtual function return type

Is it possible for an inherited class to implement a virtual function with a different return type (not using a template as return)?
7
votes
10answers
356 views

How do I limit overriding in a hierarchy?

This is an example, I'm just curious as to how it would be achieved. I want to enable only subclasses of Animal to be able to set the number of legs that they have, but I still want them to be able ...
7
votes
3answers
2k views

C++ inheritance and function overriding

In C++, will a member function of a base class be overridden by its derived class function of the same name, even if its prototype (parameters' count, type and constness) is different? I guess this a ...
7
votes
4answers
2k views

How does reflection tell me when a property is hiding an inherited member with the 'new' keyword?

So if I have: public class ChildClass : BaseClass { public new virtual string TempProperty { get; set; } } public class BaseClass { public virtual string TempProperty { get; set; } } How ...
6
votes
3answers
463 views

“Polymorphism is not the same as method overloading or method overriding.”

"Polymorphism is not the same as method overloading or method overriding. ... Neither ... are by themselves implementations of polymorphism". This is a quote from wikipedia However in the book ...
5
votes
4answers
105 views

How do I properly override a class method in an Objective-C in a subclass?

In the second chapter of his iOS Programming book, Joe Conway describes using 'self' in class methods in the event of subclassing. I understand this concept and have a question about the issue of ...
5
votes
5answers
167 views

Overloading is compile-time polymorphism. Really?

I do know the syntactical difference between overriding and overloading. And I also know that overriding is run-time polymorphism and overloading is compile-time polymorphism. But my question is: "Is ...
5
votes
2answers
133 views

Events versus overridable methods?

Can anyone provide me with general guidelines as to when I should use overridable methods such as "OnMyEvent", and when I should use events such as "MyEvent" in C#? Are there any general design ...
5
votes
3answers
215 views

Where is function overriding done?

Where in the process of creating the program, compiler, linker etc., is the overriding of functions and operator overloading done? I'm particularly interested where it is done in C++, Ruby and ...
5
votes
2answers
111 views

Override method for a family of subclasses

Given legacy code, the system has the following hierarchy of classes: Base ^ | ----------+--------------- ^ ^ ^ ^ ^ | | | | | A1 ...
5
votes
7answers
515 views

Why does Wikipedia say “Polymorphism is not the same as method overloading or method overriding.”

I have looked around and could not find any similar question. Here is the paragraph I got from Wikipedia: Polymorphism is not the same as method overloading or method overriding. Polymorphism is ...
5
votes
2answers
139 views

How to override nested C++ objects methods?

I didn't figure out a better title for the question. Let me explain it better now: The project I am working on is going to connect to a remote server, encrypt the session and send/receive data ...
5
votes
4answers
1k views

Custom Class used as key in Dictionary but key not found

I have a class, show below, which is used as a key in a Dictionary<ValuesAandB, string> I'm having issues when trying to find any key within this dictionary, it never finds it at all. As you can ...
4
votes
3answers
72 views

Overriding Constants in Java

I have two classes that extend the same abstract class. They both need the same constant, but with different values. How can I do this? Some example code to show what I want to do. abstract class A { ...
4
votes
4answers
99 views

How to identify override method in Java byte code?

I'm now focusing on a project requiring insight of Java byte code. With the help of bcel, I can now complete most of the work. One point that I'm now not clear is how to identify a sub-class method ...
4
votes
4answers
123 views

C++ : calling the right method of a derived class according to the types of the arguments

Let say we have a base class and its two derived classes; The base class owns a method execute and each derived class implements a different version of this method with different types and number of ...
4
votes
3answers
110 views

What is the difference between extends and override?

What is the difference between extends(inheritance) and override(polymorphism) ?
4
votes
1answer
125 views

Can I override colon operator in Lua?

Lua is using colon operator (:) as instance method calling. Can I override this operator for another purpose?
4
votes
3answers
250 views

PHP Variable Overriding

When I try to Override the class variable same way as override the class method in PHP. Like: class DataMapper { protected $_name = null; public function printName() { echo ...
4
votes
2answers
367 views

How to override a superclass' property with more specific types?

The Scenario I have a situation where a base class called AbstractRequest has a delegate property of type id <AbstractRequestDelegate> declared in the header file: @property (nonatomic, assign) ...
4
votes
1answer
432 views

Overriding a Magento Action

There has been many times when all I want to do is override a specific action on a controller but not the whole thing. In most cases I have just overrode the whole controller, but I'm wondering if ...
4
votes
2answers
103 views

Metadata overriding ignored?

I have made a very simple test project: MainWindow.xaml: <Window x:Class="Test.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
4
votes
2answers
557 views

C++ inheritance and method overloading

Why C++ compiler gives this error? Why i can access lol() from B, but can not access rofl() [without parameters]. Where is the catch? class A { public: void lol(void) {} void rofl(void) { ...
4
votes
4answers
545 views

Access specifier while overriding methods

Assume you have a class that defines virtual methods with the access specifier public. Can you change the access specifier on your overriden methods? I am assuming no. Looking for an explanation.
4
votes
3answers
525 views

How to override virtual function in good style? [C++]

guys I know this question is very basic but I've met in few publications (websites, books) different style of override virtual function. What I mean is: if I have base class: class Base { public: ...
4
votes
6answers
230 views

Overriding a Java Method

I'm new to Java, and I've read over some tutorials on overriding methods, but an example I'm looking at isn't working the way I expect. For example, I have the code: public class A{ public void ...
4
votes
7answers
546 views

Function override-overload in Java

What is the difference between override and overload?
4
votes
5answers
2k views

C++ Overriding Methods

I can't figure out what is up with this. I have a Scene class that has a vector of Entities and allows you to add and get Entities from the scene: class Scene { private: // -- PRIVATE DATA ...
4
votes
6answers
4k views

C++ function overriding

I have three different base classes: class BaseA { public: virtual int foo() = 0; }; class BaseB { public: virtual int foo() { return 42; } }; class BaseC { public: int foo() { return ...
4
votes
5answers
2k views

How to avoid the “unused param” warning when overriding a method in java 1.4?

In this code : public class MyClass { private Object innerValue; public Object getInnerValue() { return this.innerValue; } public void setInnerValue(Object innerValue) { ...
4
votes
5answers
95 views

Poll: Correct behavior of equality when passed object does not match LHS type?

I asked a related question about findbugs, but let's ask a more general question. Suppose that I am working with an object-oriented language in which polymorphism is possible. Suppose that the ...
3
votes
5answers
75 views

Override a member function with different return type

Consider the example below: #include <iostream> using namespace std; class base { public: virtual int func() { cout << "vfunc in base class\n"; return ...
3
votes
4answers
158 views

Android methods overriding

When we override a method in a subclass, we call the superclass method within this method, for example: protected void onSizeChanged(int w, int h, int oldw, int oldh) { width = w ; height = h ...
3
votes
4answers
167 views

A C++ covariance/overriding/circularity problem

I am writing a backend of a compiler of a subset of Java. The backend writes C++ code. There is some hypothetical Java code, though, that I do not known how to translate to C++. An example problem is ...
3
votes
2answers
153 views

Why is there “no matching function” for my call to mem_fun_ref?

I have some code where classes inherit from a base class. That base class has a function which, when run, ought to call functions to be implemented by the children. That is, the general algorithm is ...
3
votes
4answers
135 views

overriding methods without subclassing in Java

I started on a new project recently and saw the usage of overriding like below for the first time. public class SomeClass { public void myMethod() { XStream xstream = new XStream() { ...

1 2 3 4