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

5
votes
1answer
73 views

Type systems of functional object-oriented languages

I would like to know how exactly modern typed functional object-oriented languages, such as Scala and OCaml, combine parametric polymorphism, subtyping and other their features. Are they based on ...
0
votes
3answers
37 views

Difference Between Object Type and Reference Type

I was studying Polymorphism from "Head First Java" and came to this concept. Can anyone explain it please with an example? Compiler checks the class of reference type -- not the Object type. ...
2
votes
1answer
46 views

How to deal with name hiding when base class function already overloaded with different access

Class foo act as interface, it has a pure virtual function and also provide some public overloaded function with same name for convenience so that derived class won't need to provide them in every ...
1
vote
4answers
48 views

how to access child instances

#include<stdio.h> class parent { public: parent() { } }; class child : public parent { public: child() { } }; class master { public: void view(parent a) { ...
-3
votes
0answers
28 views

Java API uses which the following extensively: [closed]

I recently took a quiz, which had a question: Java API uses which of the following extensively: inheritance polymorphism encapsulation regular expressions I selected all of them, but I'm not ...
0
votes
0answers
20 views

GWT ListEditor with polymorphic types - impossible to update

My problem is almost the same as this one : ListEditor with polymorphic types Thomas had a good answer, but it is not enough for me. I want to display list of objects that could be differents, so ...
0
votes
6answers
41 views

How can I transform an object into a different object from the same base class?

Let's say I have a board game where players can buy the squares that they land on. I have a method in my abstract base class of Squares called this: public abstract void applyLandOnAffect(Player ...
1
vote
3answers
88 views

Polymorphism and inheritance

In a situation like this: class A{ public int x = 4; public void s3(){ x = 3; } public void f(){ x = 8; s3(); } } class B extends A{ public int x = 5; public ...
1
vote
2answers
154 views

GetType() and polymorphism [duplicate]

There are four public instance methods defined on object: ToString(), GetHashCode(), Equals(), and GetType(). Three of these methods are declared virtual, meaning that they can be overridden, and ...
0
votes
1answer
30 views

CSS Polymorphism used in CSS3

I am reading book of CSS3 in that, came across with one word "CSS Polymorphism". I have heard first time "CSS Polymorphism". Searching on Google but not find much. My Questions: What is CSS ...
2
votes
2answers
28 views

Using templates for a factory method on derived classes

I have a base class of which there will be many derived classes. However it is pointers to the base class that are stored in containers in my program so it can iterate through and call virtual ...
1
vote
5answers
82 views

Static Binding and Dynamic Binding

I am really confused about dynamic binding,static binding. I have read that determining the type of object at compile time is called static binding and determining at runtime is called dynamic binding ...
5
votes
3answers
64 views

polymorphism-like handling of parameters - simple OO?

I am sure this must have been asked before but I cannot seem to find a similar example. I understand well polymorphism and method overloading, but here is a seemingly simple scenario with a solution ...
1
vote
2answers
70 views

java polymorphism not working, what am I missing?

I have the following hierarchy in my project: public abstract class AbstractMessage extends AbstractEntity{} public class ParseFailedMessage extends AbstractMessage {} public class ...
4
votes
1answer
57 views

Polymorphism & default values: can co-exist?

I have a base class with a number of inherited derived classes. Something like this: class A { public: virtual void f(string foo = "bar") { cout << foo << endl; } }; ...
0
votes
2answers
40 views

Can't access members of child class in polymorphism

class Book { public: string title; int ID; virtual void S () = 0; }; class Narnia : public Book { public: int NarniaParts; virtual void S () {} }; class HP : public Book { ...
2
votes
5answers
99 views

What is the right way to use polymorphism and inheritance in C++ to handle a basket of fruit?

Say I'm coding a robot that processes a basket of fruit. Oranges need to be juiced, apples need to be sliced, and bananas need to be peeled. Fortunately, our robot has the exact tools needed for ...
1
vote
1answer
39 views

Get typename of derived class from base instance in C++

I am creating a generic error handler for a C++ project. As part of the logging, I want to include the name of the exception class. I'm hoping there's a way to generically get the name of the specific ...
0
votes
0answers
12 views

itk 4.3.2 non-polymorphic methods

I use ITK 4.3.2 for the project I recently work on and I want to change DoFloodStep method of FloodFilledImageFunctionConditionalIterator class. But this method is not declared as virtual and belongs ...
0
votes
3answers
77 views

Array memory Allocation doesn't work

I have the next classes: class A { }; class B : public A { int num; }; in my main I have: int main() { A* vec; // A is a class with pure virtual functions vec = new B[2]; // want to ...
2
votes
2answers
60 views

Turning a non-pure virtual function into pure in a subclass

So, I have this polymorphic hierarchy: ClassA Is not abstract, no pure virtual functions, but a few virtual functions ClassB:public ClassA Defines an extended interface for a certain type of ...
1
vote
0answers
41 views

JPA / Hibernate Query on polymorphic field

Given the following type hierachy: @Entity @Inheritance(strategy=InheritanceType.TABLE_PER_CLASS) class A { } @Entity class B extends A { String b; } @Entity class C extends A { String c; } ...
0
votes
0answers
14 views

Sublcassing vs [closed]

I am not sure what the latter approach is called so someone please edit the title if you know. We all know sublclassing. There can be a class called Animal, and a subclass of Animal called Human and ...
2
votes
1answer
52 views

Struggling with design decision regarding polymorphic member

I am trying to design something that doesn't rely on casting. I asked a question here and I believe ultimately there is a better way, so I'm asking for advice. I have a generic Object of which there ...
2
votes
4answers
59 views

C++ polymorphism with references

I've been writing some classes in C++ that operate on files. When I started, I made all my constructors accept one std::string argument that was interpreted as a filename, because that was quick and ...
0
votes
3answers
77 views

Calling a non-virtual function in derived class using a base class pointer

As noted in this answer: high reliance on dynamic_cast is often an indication your design has gone wrong. What I'd like to know is how can I call a custom function in a derived class, for which ...
-3
votes
2answers
81 views

Polymorphism with smart pointers?

I've searched SO a bit but couldn't find anything that answers correctly my problem (I've read this, this and this ) I'm currently trying to use smart pointers with polymorphism. When I try to ...
0
votes
1answer
21 views

How to alter the class of a coredata entity to a subclass

I have a coredata model with a parent Entity type, and other Entities which are subclasses of the parent. During runtime, I am first creating entities which are instances of the parent class. Later ...
5
votes
1answer
94 views

Call base method instead of override

In C#, class A contains a public method Foo() which does some processing and returns a value. protected method Bar(), also in class A performs the same logic as Foo(), followed by some additional ...
-1
votes
2answers
56 views

Best way to structure inheritance

#include <iostream> struct Bar { public: Bar() { } ~Bar() { } std::string print() { return std::to_string(42); } }; struct Foo { public: Foo() { } ~Foo() ...
1
vote
4answers
59 views

Polymorphism: Instance class?

Is it necessary to instance the class another class has been derived from? If I dont, I can access its methods anyway, like in this example: #include <iostream> struct Class1 { public: void ...
0
votes
2answers
35 views

Rails - How Do I Nest Comments - Polymorphism

For my application, I have Projects. I have used Polymorphism to build a model called "Newcomment" for comments made on these Projects. I followed this railscast. This works great. But now, I want ...
3
votes
1answer
95 views

In C++, should iterable types be non-polymorphic?

A bit of background: I am currently working on an assignment from my OOP course which consists in designing and implementing a phone book manager around various design patterns. In my project there ...
0
votes
1answer
101 views

C++ smart pointers polymophism

I am quite new to smart pointer so sorry if my question seems naive to some of you. Here is an example of what i want to do: using namespace std; class Base { protected: int m_Property; public: ...
1
vote
3answers
112 views

Deserialize Json Object to polymorphic C# object without typeNameHandling

My problem is I want to deserialize a json object to a C# object, but the trick is that the C# object contains List< abstract class > and this abstract class is a super class of another 10 classes. ...
-2
votes
1answer
45 views

Pointers and Polymorphism [duplicate]

I have problems understanding the following C++ code. Can somebody please explain to me the meaning of the line 3? What does ": lmp(ptr)" before constructer mean? I cannot make sense out of it ...
8
votes
5answers
159 views

UML and static polymorphism

I have an object which is instantiated during compilation according to the build configuration. As far as the surrounding software considered, the object exposes the same interface. I would like to ...
0
votes
3answers
26 views

Java relation b/w parent and child function calling mechanism

I am trying to understand the relation b/w parent and child function calling mechanism, but not got this one class Parent { Parent() { greeting();//as we are not calling this on any ...
0
votes
0answers
38 views

Jackson Polymorphic Deserialization - Can you require the existence of a field instead of a specific value?

Using a spin on the zoo example: public class ZooPen { public String type; public List<Animal> animals; } public class Animal { public String name; public int age; } public ...
0
votes
5answers
33 views

Use instanceof or public method to get instance

So I have 3 classes: Item GroupItem extends Item ProductItem extends Item I am passing a array of Item objects to a class and want to do separate things depending on their class type. Would using ...
5
votes
1answer
87 views

Universally-generalized constraints

Here's a pretty useful class: class Foo f a where foo :: f a It let's me make default values for lots of types. In fact, I might not even need to know what a is. instance Foo Maybe a where ...
2
votes
1answer
61 views

How can I best use polymorphism on incomplete types in C++

I've been looking on stackoverflow and google for a while now, but I can't seem to find an answer to my specific question about circular references, incomplete types and polymorphism. I hope I can ...
0
votes
0answers
57 views

Best practice for nested polymorphism in C++?

I have a slightly complex model which I'm currently refactoring in an attempt to make the code cleaner and easier to maintain. The model contains a main bit of functionality and then different models. ...
0
votes
3answers
34 views

setting a later value after constructing an object in object inheritance

Shape *shape[100]; Square sqr; void inputdata() { int len,width; cout << "enter length"; cin >> len; cout << "enter width"; cin >> width; sqr = Square(len,width,0); //---> ...
0
votes
3answers
33 views

object inheritance virtual function run fail error

Shape *shape[100];//global scope Square sqr;//global scope void inputdata() { int len,width; cout << "enter length"; cin >> len; cout << "enter width"; cin >> width; Square ...
1
vote
1answer
53 views

How to prevent compiler from choosing the least generic type?

I have a method that looks up some storage for an instance of a particular class: def lookup[T >: Null: ClassTag]: T = { // Print what class tag we got: ...
0
votes
2answers
75 views

Json.net deserialization array of interfaces

I'm getting a "type is interface, cannot be instanciated" deserialization error with json.net even though I am specifying type on the object I'm trying to deserialize private static ...
-2
votes
1answer
51 views

C++ : Is this polymorphism possible?

I have those two classes : class Foo { virtual void Bar2(); void Bar(){Bar2();}; } class Foo2 : public Foo { void Bar2(); } Will calling the Bar() function in Foo use the Bar2 function ...
1
vote
2answers
67 views

How to store constant 2D array in C++ class with virtual access?

I have to put few megabytes of data in two-dimensional arrays in C++ code (embed it in DLL), diffrent datasets for each subclass. I defined virtual accessor methods to access constants to specified ...
0
votes
2answers
46 views

Polymorphism Design

I am trying to decide whether or not to use polymorphism for my problem. Below is a dummy problem similar to my problem I created for the sake of this question: Let's say I have a base class Shape ...

1 2 3 4 5 49