19
votes
5answers
1k views
C# : Why doesn’t ‘ref’ and ‘out’ support polymorphism?
Take the following :
class A {}
class B : A {}
class C
{
C() {
var b = new B();
Foo(b);
Foo2(ref b); // <= Compile time error :
// 'The 'ref' …
18
votes
7answers
852 views
At as deep of a level as possible, how are virtual functions implemented?
We all know what virtual functions are in C++, but how are they implemented at a deep level?
Can the vtable be modified or even directly accessed at runtime?
Does the vtable exist for all classes, …
16
votes
4answers
328 views
Why does this polymorphic C# code print what it does?
I was recently given the following piece of code as a sort-of puzzle to help understand Polymorphism and Inheritance in OOP - C#.
// No compiling!
public class A
{
public virtual string …
16
votes
12answers
602 views
What is Polymorphism?
I was watching a googletechtalks video and they frequently refered to polymorphism what is it, what is it for, and how it it used?
12
votes
25answers
2k views
Try to describe polymorphism as easy as you can
we can find a lot of information about the subject on the internet and books
http://en.wikipedia.org/wiki/Type_polymorphism
but lets try to make it as simple as we can .
11
votes
6answers
2k views
Where do “pure virtual function call” crashes come from?
I sometimes notice programs that crash on my computer with the error: "pure virtual function call".
How do these programs even compile when an object cannot be created of an abstract class?
11
votes
16answers
1k views
Expression Evaluation and Tree Walking using polymorphism? (ala Steve Yegge)
This morning, I was reading Steve Yegge's: When Polymorphism Fails, when I came across a question that a co-worker of his used to ask potential employees when they came for their interview at Amazon.
…
10
votes
4answers
259 views
Higher-kinded generics in Java
Suppose I have the following class:
public class FixExpr {
Expr<FixExpr> in;
}
Now I want to introduce a generic argument, abstracting over the use of Expr:
public class Fix<F> {
…
8
votes
4answers
189 views
Why does this work? Method overloading + method overriding + polymorphism
In the following code:
public abstract class MyClass
{
public abstract bool MyMethod(
Database database,
AssetDetails asset,
ref string errorMessage);
}
public sealed class …
8
votes
3answers
645 views
Overriding a Base’s Overloaded Function in C++
I ran into a problem where after my class overrode a function of its base class, all of the overloaded versions of the functions were then hidden. Is this by design or am I just doing something …
8
votes
10answers
2k views
Are non-pure virtual functions with parameters bad practice?
I have a base class with an optional virtual function
class Base {
virtual void OnlyImplementThisSometimes(int x) {}
};
When I compile this I get a warning about the unused param x. Is there …
8
votes
11answers
931 views
Does polymorphism or conditionals promote better design?
I recently stumbled across this entry in the google testing blog about guidelines for writing more testable code. I was in agreement with the author until this point:
Favor polymorphism over …
7
votes
16answers
1k views
Polymorphism - Define In Just Two Sentences
I've looked at other definitions and explanations and none of them satisfy me. I want to see if anybody can define polymorphism in at most two sentences without using any code or examples. I don't …
7
votes
5answers
1k views
python properties and inheritance
I have a base class with a property which (the get method) I want to overwrite in the subclass. My first thought was something like:
class Foo(object):
def _get_age(self):
return 11
…
7
votes
7answers
934 views
How does the C++ compiler know which implementation of a virtual function to call?
Here is an example of polymorphism from http://www.cplusplus.com/doc/tutorial/polymorphism.html (edited for readability):
// abstract base class
#include <iostream>
using namespace std;
class …
