Tagged Questions
In computer science, polymorphism is a programming language feature that allows values of different data types to be handled in a uniform manner.
53
votes
6answers
3k 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' ...
33
votes
33answers
1k views
Teach dynamic polymorphism with simple example
I teach in a classroom of physics, and I need to teach dynamic polymorphism in c++ using virtual functions. The problem is that I can't find a good example.
I don't like the Shape example, because ...
29
votes
8answers
1k views
What is wrong with testing an object to see if it implements an interface?
In the comments of this answer it is stated that "checking whether the object has implemented the interface , rampant as it may be, is a bad thing"
Below is what I believe is an example of this ...
29
votes
2answers
1k views
Polymorphism in c++
AFAIK:
C++ provides three different types of polymorphism.
Virtual functions
Function name overloading
Operator overloading
In addition to the above three types of polymorphism, there exist other ...
28
votes
1answer
1k views
Optimizing numerical array performance in Haskell
I'm working on a terrain generation algorithm for a MineCraft-like world. Currently, I'm using simplex noise based on the implementation in the paper 'Simplex Noise Demystified' [PDF], since simplex ...
28
votes
26answers
3k 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 .
25
votes
7answers
2k 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, ...
24
votes
17answers
1k 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?
22
votes
4answers
795 views
Why don't the Haskell standard libraries make more use of polymorphism?
I'm in the process of learning Haskell, and type classes seem like a powerful way to make type-safe polymorphic functions. But a lot of the Haskell Prelude functions don't use them. More ...
22
votes
4answers
508 views
Learning C++: polymorphism and slicing
Consider the following example:
#include <iostream>
using namespace std;
class Animal
{
public:
virtual void makeSound() {cout << "rawr" << endl;}
};
class Dog : public Animal
...
22
votes
3answers
562 views
Why can I access a derived private member function via a base class pointer to a derived object?
#include<iostream>
using namespace std;
class base
{
public:
virtual void add() {
cout << "hi";
}
};
class derived : public base
{
private:
void add() {
cout ...
22
votes
4answers
814 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 ...
20
votes
4answers
848 views
More on generic Scala functions
Trying to implement, in Scala, the following Haskell function (from Learn You a Haskell...) so that it works with Int, Double, etc.
doubleUs x y = x * 2 + y * 2
Note that this is similar to Scala: ...
20
votes
1answer
737 views
What is Haskell's style of polymorphism?
With Haskell's type classes it almost seems that it enables ad hoc polymorphism, but its functions declarations seem parametric polymorphism. Am I mixing my understanding of different things?
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
5answers
2k views
C# : Is Variance (Covariance / Contravariance) another word for Polymorphism?
I am trying to figure out the exact meaning of the words Covariance and Contravariance from several articles online and questions on StackOverflow, and from what I can understand, it's only another ...
19
votes
4answers
1k views
Contrasting C# generics with Haskell parameterized types
Based on some advice I found on StackOverflow, I'm digging into Haskell. I was pleased to see that Haskell's parameterized types behave very much like C# generics. Both languages advise a single ...
19
votes
5answers
8k 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
...
18
votes
8answers
381 views
When is it acceptable to use instanceof?
I'm designing a game. In the game, various game objects extend different interfaces (and one abstract class) depending on what they need to be doing, and are passed to handlers which take care of ...
18
votes
4answers
478 views
Total function of type (forall n . Maybe (f n)) -> Maybe (forall n . (f n))
Is it possible to write an injective function of type
hard :: (forall n . Maybe (f n)) -> Maybe (forall n . (f n))
as a total functional program -- that is, without using error,
undefined, ...
18
votes
7answers
650 views
Polymorphism and method overloading
I have a quick and straighforward question:
I have this simple class:
public class A
{
public void m(Object o)
{
System.out.println("m with Object called");
}
public void ...
18
votes
11answers
2k views
Do 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 ...
18
votes
6answers
10k 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?
17
votes
6answers
354 views
Polymorphic objects on the stack?
In a previous question I quoted Stroustrup on why a common Object class for all classes is problematic in c++. In that quote there is the statement:
Using a universal base class implies
cost: ...
16
votes
2answers
265 views
Use case for rank-3 (or higher) polymorphism?
I've seen a few use cases for rank-2 polymorphism (the most prominent example being the ST monad), but none for a higher rank than that. Does anyone know of such a use case?
16
votes
2answers
196 views
Effects of monomorphism restriction on type class constraints
This code breaks when a type declaration for baz is added:
baz (x:y:_) = x == y
baz [_] = baz []
baz [] = False
A common explanation (see Why can't I declare the inferred type? for an example) ...
16
votes
5answers
7k views
Scala: How to define “generic” function parameters?
I am trying to learn Scala now, with a little bit of experience in Haskell. One thing that stood out as odd to me is that all function parameters in Scala must be annotated with a type - something ...
16
votes
4answers
926 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> {
...
16
votes
15answers
2k 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.
...
15
votes
4answers
169 views
Why use id when we can just use NSObject?
I know that when we want to create an unknown value object we use id. However, I'm curious that why did Apple to choose id which decides it's value during runtime, when every object is a subclass of ...
15
votes
1answer
297 views
Polymorphism within higher-order functions?
I have an algebraic data type with some constructors that hold comparable values, and some constructors that don't. I wrote some comparison functions that work like the standard (==) and (/=) ...
15
votes
2answers
2k views
Calling an overridden method from a parent class ctor
I tried calling an overridden method from a constructor of a parent class and noticed different behavior across languages.
C++ - echoes A.foo()
class A{
public:
A(){foo();}
virtual ...
14
votes
5answers
311 views
Is Milner let polymorphism a rank 2 feature?
let a = b in c can be thought as a syntactic sugar for (\a -> c) b, but in a typed setting in general it's not the case. For example, in the Milner calculus let a = \x -> x in (a True, a 1) is ...
14
votes
4answers
312 views
Does downcasting defeat the purpose of polymorphism?
I encountered a question today, found here, which raised this question for me.
Here's a pseudo-code example of what I'm getting at:
class Car{
public:
virtual int goFast() = 0;
};
class ...
14
votes
2answers
363 views
Why are polymorphic values not inferred in Haskell?
Numeric literals have a polymorphic type:
*Main> :t 3
3 :: (Num t) => t
But if I bind a variable to such a literal, the polymorphism is lost:
x = 3
...
*Main> :t x
x :: Integer
If I ...
14
votes
4answers
655 views
How to call base.base.method()?
// Cannot change source code
class Base
{
public virtual void Say()
{
Console.WriteLine("Called from Base.");
}
}
// Cannot change source code
class Derived : Base
{
public ...
14
votes
3answers
5k 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 ...
13
votes
4answers
448 views
How can C++ virtual functions be implemented except vtable? [closed]
Possible Duplicate:
A question about virtual mechanism in C++
Is using vtable the only way to implement virtual member functions mechanism in C++? What other ways exist?
13
votes
1answer
337 views
What are the alternatives to subtype polymorphism in scala?
I'm interested to know the complete set of alternatives to subtype polymorphism in scala.
13
votes
4answers
2k views
Is `List<Dog>` a subclass of `List<Animal>`? Why aren't Java's generics implicitly polymorphic?
I'm a bit confused about how Java generics handle inheritance / polymorphism.
Assume the following hierarchy -
Animal (Parent)
Dog - Cat (Children)
So suppose I have a method ...
13
votes
20answers
5k 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 ...
13
votes
5answers
7k views
Hiding inherited members in C#
I'm looking for some way to effectively hide inherited members. I have a library of classes which inherit from common base classes. Some of the more recent descendant classes inherit dependency ...
12
votes
5answers
343 views
Polymorphism, overloads and generics in C#
class Poly
{
public static void WriteVal(int i) { System.Console.Write("{0}\n", i); }
public static void WriteVal(string s) { System.Console.Write("{0}\n", s); }
}
class ...
12
votes
3answers
284 views
Model an undirected graph in Rails?
Importing the language of graph databases, understand
nodes (represented by circles),
edges (represented by arrows), and
properties (metadata of nodes / edges)
The graphic (courtesy of ...
12
votes
4answers
322 views
Achieving polymorphism in functional programming
I'm currently enjoying the transition from an object oriented language to a functional language. It's a breath of fresh air, and I'm finding myself much more productive than before.
However - there ...
12
votes
6answers
808 views
polymorphic iterators in C++
I'm trying to implement a polymorphic iterator in C++. Basically, I need this to be able to apply a filter, so that the iterator would skip some items depending on the associated condition. So I made ...
12
votes
3answers
5k views
How does polymorphism work in Python?
I'm new to Python... and coming from a mostly Java background, if that accounts for anything.
I'm trying to understand polymorphism in Python. Maybe the problem is that I'm expecting the concepts I ...
12
votes
10answers
7k views
Reintroducing functions in Delphi
Does anyone know what the motivation was for having the reintroduce keyword in Delphi?
If you have a child class that contains a function with the same name as a virtual function in the parent class ...
11
votes
2answers
127 views
When can the compiler statically bind a call to a virtual function?
I expected the compiler to be able to statically resolve a function call to a virtual function if the type of the class is known at compile time (e.g. if the class instance is not being used through a ...
11
votes
3answers
796 views
Is “inherited” the correct term to explain static method of superclass can be accessed by subclass?
Clarification: this question is not about access modifier
Confirmed that B.m() and b.m() statements both works in the following code:
class A {
static void m() { //some code }
}
class B extends A ...