In computer science, polymorphism is a programming language feature that allows values of different data types to be handled in a uniform manner.

learn more… | top users | synonyms

2
votes
1answer
36 views

prevent event from spawning another thread

I bit ago I was reading about delegates and events (for a completely different reason) from this [website][1] In there I got the impression that if your event takes long enough a seperate thread is ...
-2
votes
1answer
46 views

deleting an intermediate derived class

Class C : public B { } Class B : public A { B(); // store this-pointer outside in A* pointer; } class A { A(); virtual ~A(); } creating C "creates" B and A. B is the intermediate ...
0
votes
2answers
60 views

Deserialize subclasses without switch statements.

This is more of a software engineering question. I have a base class, and classes that extends a base class. My goal is to have a cleaner way to deserialize from, say a String. My current solution is ...
1
vote
2answers
61 views

Arrays and polymorphism

I have a question about polymorphism. Here are 3 simple classes: public class Book { public string Name; } public class Encyclopedia : Book { public int Volume; } public class Library { ...
0
votes
3answers
63 views

Run-time polymorphic class with value semantics

I would like a class Value, which both has a run-time polymorphic behaviour, and a value semantics. For instance, I would like to be able to do things like: // create polymorphic data Value v1 = ...
1
vote
6answers
81 views

Difference between inheritance & polymorphism

I am having issues understanding what exactly polymorhism is and how it differs from inheritance. I have researched the web and found many answers that gives very technical deffinitions on what ...
4
votes
2answers
173 views

I want to write a function which is similar to `flip` in Haskell to get rid of lambda expressions. But I can't deal with it's type

I want to write a Haskell function which acts like flip but is far more general and can make any parameter of a function be the last parameter. For convenience, we use pull to represent it. It is ...
1
vote
1answer
46 views

C++ - construct vector of unique_ptr via initialization list

I have a class, called group, that shall keep a number of base classes inside it, held in std::unique_ptrs (polymorphism). The order does not matter, nor does if some of the elements are equal between ...
0
votes
1answer
53 views

detecting virtual methods

I have a class which parses a document and calls a derived class to notify certain events found in the stream. Because the parser has to handle encodings and re write parts of the document into ...
0
votes
2answers
24 views

C++ Static vector loses data after exiting function

I have a static function: void TextManager::printDialogue(vector<Button*>* options, int optionsCount, vector<string> outputDisplayText) { active = true; buttons = *options; ...
5
votes
1answer
176 views

F# and modeling of the inheritance

my question relates to a way how to deal with the inheritance in functional way in F#. To describe it a little, I give a simple example. Suppose we want to model a world consisting of various kinds of ...
4
votes
2answers
112 views

Abstract Class with Multiple Levels

I have written the following code. #include <iostream> using namespace std; class CI { public: virtual void display() =0; }; class Inter: public CI { public: int parseData (int); }; ...
2
votes
2answers
68 views

Array of pointers to different struct implementing same interface

What I am trying to do: I have several struct types, all implementing the same interface, which declare a method, say "Process()" type Worker interface { Process() } type obj1 struct { } func (o ...
2
votes
1answer
46 views

Does class c implement interface<String>

I have this interface: interface MyInt<T> { public void foo(T t); } And these classes: class MyString implements MyInt<String> { @Override public void foo(String t) { ...
5
votes
2answers
82 views

C++: Separate Classes for branch and leaf nodes?

I am making a tree (essentially a prefix tree, but for numbers not strings), which is built from sorted list of tuples of numbers ( (1,1,2), (1,2,5), (2,1,0) etc...), each one associated with a single ...
2
votes
4answers
39 views

Polymorphism - Ambiguous error

I asked a similiar question yesterday, but another issue has arisen. class Cat { public void isClawedBy(Cat c, Kitten k){ System.out.println("Clawed by a cat"); } } class Kitten ...
0
votes
4answers
54 views

Polymorphism - Simple

Just confused on how to following answer is correct. class Cat { public void isClawedBy(Cat c){ System.out.println("Clawed by a cat"); } } class Kitten extends Cat{ public void ...
0
votes
2answers
42 views

C++ overriding function

I have tried to solve this problem for several days now without any luck. Im trying to override a function. This is the header for the parent class: class DComponent{ public: virtual void ...
0
votes
1answer
31 views

Pure virtual functions in public API for a shared library (c++)

I have created a shared library which I am using in another application. One of the core features of the shared library is a base class that check for objects that are being leaked. The code in the ...
1
vote
0answers
44 views

Does the compiler optimize non-polymorphic calls to virtual methods?

Does the compiler optimize/inline non-polymorphic calls to virtual methods? I mean when the call is in a non-polymorphic context so everything is known at compile time?
-2
votes
1answer
37 views

making specific (or inherited) generic set of classes from a generic set of classes [closed]

i have a class named Foo, this class stores a generic variable. And i have another class named Set. Set is a set of Foo objects, therefore, Set is also a generic class. Each of this classes has lots ...
0
votes
1answer
19 views

Workflow Foundation and Polymorphism

The new version of Workflow Foundation automatically creates services for you whenever you create a receive/send activity. One of the items returned is a List of BaseClasses In WCF I can specify ...
0
votes
3answers
24 views

how to call inner class's method from static main() method

Trying to create 1 interface and 2 concrete classes inside a Parent class. This will qualify the enclosing classes to be Inner classes. public class Test2 { interface A{ public ...
0
votes
2answers
60 views

Virtualism Inherited in C#

I picked this code form MSDN resources in C# polymorphism. public class A { public virtual void DoWork() { } } public class B : A { public override void DoWork() { } } public class C : B { ...
0
votes
0answers
26 views

How should I implement a class that hold a image and its information and another class that images must come from a camera?

I'm writing some class that suppose to hold an image and some information. Another class have information about a image obtained from a camera. Class 1: Camera image information, like shutter speed, ...
2
votes
1answer
63 views

Polymorphic Performance Hit

I'm modelling some classes to represents units of measure in C#. For example, I have Millimeters and Inches modelled, with a IDistanceUnit interface and a base DistanceUnit class providing common ...
0
votes
0answers
18 views

How to deserialize polymorphic collections in JsonFX?

My JsonFX serialization code works, but the object that I'm serializing contains a list of polymorphic entities, and they're all deserialized as their base type and not their actual type. Here's my ...
3
votes
6answers
103 views

Why doesn't Java allow me to perform this type of polymorphism/inheritance?

I am refactoring a huge if statement I have. One of the ways I found to improve it was by using polymorphism and inheritance. In a very simplified way, this is what I have in my code: public abstract ...
0
votes
3answers
29 views

Capture Return Value of Method returning base type or derived type

I have a JAVA method which can return an instance of a base class(Say A) OR an instance of the derived class(say B) depending on the Runtime input. ( B derives from A) Now , in cases when the method ...
1
vote
1answer
69 views

virtual function with varying return types

I am writing an interface class for different types of protocol messages. I cannot re-write the base protocol code so to give each protocol a common interface I am creating a base class with a common ...
0
votes
0answers
17 views

Rails association different immplementation classes same name

I need your help with a rails question regarding ActiveRecord associations and some kind of reverse polymorphism (i guess). What i want: I'm trying to build a dashboard system. Each dashboard has ...
4
votes
1answer
132 views

How is polymorphism implemented at low level in a language like c++ ? [duplicate]

I read in a book that polymorphism is implemented in c++ by three levels of pointers(using vtable) but are there other methods of implementing it in c++ .
1
vote
2answers
141 views

Compile time vs run time polymorphism in C++ advantages/disadvantages

In C++ when it is possible to implement the same functionality using either run time (sub classes, virtual functions) or compile time (templates, function overloading) polymorphism, why would you ...
0
votes
2answers
89 views

C++: error: ‘class’ has no member named

For my graduation thesis I'm programming some finite element code, or to be more precise, I'm modifying an existing program, which is based on 2 class libraries provided by my faculty. As such, I ...
0
votes
3answers
63 views

Use of keyword 'this'

I'm struggling to understand how exactly to work out what 'this' refers to when used in superclass constructors. I have three classes: public class Animal { public int x; ...
1
vote
3answers
41 views

Java Method Return Type Specialisation

Suppose I have a collection which stores generic types, e.g. public class MyCollection<T> { public T getNext() { //Remove T from list //Return T } } I am using ...
1
vote
1answer
56 views

Overloading functions with derived classes

What I'm trying to do is something like this: void SomeFunction(Base *){//do something} void SomeFunction(Derived *){//do something else} Is this possible in C++? My attempts so far just call the ...
0
votes
1answer
50 views

Is there a better way to select a translate method based on class type?

In my code, I have a collection of objects that are instances of classes that don't work with the new code. They all need to be translated to their corresponding classes that are defined locally. I am ...
0
votes
2answers
49 views

C# to C++ Polymorphism

I had in C# an array of my custom class Entity. Due to different types of entities which I created and the way C# polymorphism worked, I chose to keep the different entity types in one entity array ...
0
votes
1answer
13 views

Recursive :include in Rails

I have a polymorphic model that can relate to itself: class Comment < ActiveRecord::Base belongs_to :commentable, polymorphic: true has_many :comments, as: :commentable end These ...
2
votes
5answers
80 views

Polymorphism and Overloading

I recently encountered the following scenario: I have a superclass A and a class B deriving from it. A function, say oracle, returns an object of either type. I want to do different things depending ...
1
vote
2answers
46 views

how does passing shared pointer by value and accepting as base class argument work?

in this program :http://www.boost.org/doc/libs/1_53_0/doc/html/boost_asio/example/chat/chat_server.cpp class chat_session : public chat_participant, chat_session inherits chat_participant in one ...
1
vote
2answers
63 views

Compiler does not like the arrow OR dot operator [closed]

Trying to get my linked list to display, but getting syntax errors on the type of operator I am using. When I use the dot operator it says, "did you intend use '->' instead?" Then when I use the ...
1
vote
3answers
53 views

How Does the JVM handle Dynamic Dispatch in this Situation?

Given the following source and ouput: Source: public class A { public void foo() { bar(); } public void bar() { System.out.println ("in A's bar() method"); } } public class B ...
0
votes
2answers
41 views

How to check which derived class your object is with typeid?

So I want to test whether my object is a potion or a weapon. How do I do this with typeid (i.e. or anything for that matter)?? I then want to instantiate an object based on this condition. I ...
0
votes
4answers
56 views

Java OOP optimising code

I am working on my Java assignment - Minesweeper game clone. I have two almost identical (only text label and text frame differ) methods gameWon() and gameLost() which are responsible for showing ...
4
votes
3answers
60 views

All methods in one class or polymorphism implementation?

Here is what you need to know to understand the question: I want to connect a class called SCL to a class called Region. Now I have many different ways I want to connect a instance of these 2 ...
0
votes
2answers
37 views

C# Pass to function a Child List as a Base List

I have a base type B and multiple derived child types, C1:B, C2:B, C3:B, etc. I have lists of each child type, ListL1, ListL2, ListL3. I have working functions, F1, F2, F3, for each child type that ...
1
vote
1answer
47 views

When to use as to cast objects?

I am slightly confused on wether I am approaching this correctly. Let's say I have a roll-play game, where players can defeat monsters and collect items, here is some of my player class: (c#) ...
2
votes
5answers
78 views

Java OOP based Program Flow [closed]

i am learning basic java , Read basic concepts from Head First Java (Polymorphisim,abstract class/methods, overriding etc ) , now i am doing a very simple example where a Remote is used for ...

1 2 3 4 5 50