Tagged Questions

2
votes
2answers
49 views

Override (or shadow) a method with extension method?

Is it possible to override or shadow (new in C#) instance methods with extension methods?
3
votes
2answers
145 views

Isolating Ruby methods from overriding in subclasses? (like Java’s private methods)

In Ruby, I'd like to acheive something like this Java sample: class A { private void f() { System.out.println("Hello world"); } public void g() { f(); } } class …
0
votes
1answer
44 views

Overriding super class methods in Objective-C

If subclass in objective-c wants to override a super class's method, does it have to match the return type too?
0
votes
1answer
27 views

In VB, How do you force an inherited class to use an attribute on the class?

I'm trying to force an inherited class to use a custom attribute. I'm creating a class library where the user who wants to create an item will do so, but be forced to add an attri …
1
vote
5answers
60 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 i …
1
vote
2answers
84 views

Using all overloads of the base class

When a subclass overrides a baseclass's method, all of the baseclass's overloads are not available from the subclass. In order to use them there should be added a using BaseClass:: …
2
votes
5answers
154 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){ …
0
votes
3answers
38 views

Quick way to locate all sub-classes that override a certain function?

I have a base class that declares a virtual function, and a large set of subclasses that inherit from the class, some of which may override the function. Now I need to alter the be …
13
votes
8answers
522 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 a …
9
votes
4answers
255 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). …
0
votes
1answer
186 views

Overriding Rails mislav-will_paginate plugin

I'm working with the Rails mislav-will_paginate plugin to paginate my records. I want to produce the following output, regardless of whether there were multiple pages: X - Y of Z …
2
votes
5answers
330 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: …
6
votes
3answers
607 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 …
3
votes
6answers
530 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: …
0
votes
2answers
192 views

XSLT template overriding

Hi Everyone, I have a small question regarding XSLT template overriding. For this segment of my XML: <record> <medication> <medicine> <name>p …

1 2 next
15 30 50 per page