Inheritance is the system in object oriented programming that allows objects to support operations defined by anterior types without having to provide their own definition. It is the major vector for polymorphism in object-oriented programming.

learn more… | top users | synonyms (1)

0
votes
0answers
44 views

Extending javascript “class” (object)

I'm using a javascript library (pixi.js to be specific) and I'm trying to extend one of their classes in typescript. However, trying to extend the class like below will yield an error. module ...
3
votes
4answers
96 views

Workaround for inheriting from multiple classes?

So I'm working on a GUI library and I have 3 classes: UIElement, the base for every UI object, UIContainer, which implements the possibility to hold other child-elements and UIRect which implements ...
-2
votes
1answer
59 views

Java generics with inheritance [closed]

I have this structure of classes : public class NFAddress public class NFAddresses<T extends NFAddress> extends ArrayList<NFAddress> public class NFMutableAddress extends NFAddress ...
2
votes
2answers
62 views

Successive inheritance of Lists

I have a List structure setup as such: List<List<Value>> l = new RowList(); which gives a "Type mismatch: Cannot convert from RowList to List<List<Value>>" error. The ...
1
vote
1answer
34 views

Inherited classes in a C++11 priority queue

I'm new to OOP in C++ and I'm not sure if this will work but I'd like to have multiple class types in a C++ std priority queue. I set the classes up so that they all inherit from a base class and ...
0
votes
2answers
90 views

C++: hide class construction from user

I am developing a series of event classes. These classes contain information aquired from a system. They are from diferent natures and may contain different messages, for example: one possible event ...
9
votes
5answers
181 views

why derive from a concrete class is a poor design

I was reading about NonVirtual Interface pattern: Herb Sutter is talking about why virtual function must be private in most of the case, protected in some case and never public. But at the end of ...
0
votes
0answers
10 views

How to inherit from director class in cocos2d

I can make a window by initializing director at the end of my script like this: import cocos as cc if __name__ == '__main__': cc.director.director.init(width, height) However, I want director ...
2
votes
1answer
18 views

Derive istringstream and implementing operator>>(string&)

I'm dealing with the following situation: I'm using istringstream's operator>> to extract formatted data within template function. Every thing work great except when the function is called with ...
3
votes
2answers
42 views

VC++ debugger - evaluating a virtual function, CXX0052: Error: member function not present

Here is a simplified version of my code: #include <iostream> using namespace std; enum Shapes {circle, rectangle}; class Shape { public: virtual Shapes getType() const = 0; }; class Circle ...
1
vote
3answers
164 views

C++11: call by value, move semantics and inheritance

Let's say I have a class which I plan to directly expose as an instantiatable class to the programmer: class Base { public: Base(std::string text) : m_text(std::move(text)) {} private: ...
0
votes
2answers
51 views

Inheritance in Java, can't access subclass functions/methods

I'm having trouble accessing any public function in my bin_stree object: src/main.java: public static void main(String[] args) { b_node <Integer> root=new b_node <Integer> (10); ...
4
votes
5answers
102 views

I have a base class. How do I call the right method for the right derived class?

Obviously trying to simplify the problem here. I have a base class and a number of derived classes: public class Mammal { } public class Cat : Mammal { } public class Dog : Mammal { } And a ...
-2
votes
3answers
47 views

Calling the over-riding function in the parent class [closed]

I have a little question about java inheritance. So say I have the following classes. class ScreenObject { public void update(GameContainer gc, StateBasedGame sbg, int delta) { Input ...
1
vote
3answers
48 views

inheriting from multiple classes?

I have the following hierarchy of interfaces and implementations in Java: A <- B <- C A_impl <- B_impl <- C_impl where A <- B means B extends A, and A_impl implements A, etc. Now I ...
0
votes
3answers
47 views

Are there any best practices for testing classes that use inheritance?

Are there best practices for testing classes that use inheritance? For example if I have a class BaseNode public class BaseNode { int testInt;//attribute //assume getters and setters and ...
0
votes
1answer
22 views

How do I override virtual method with parameter that inherits base method parameter?

I have a set of objects inherited from ObjBase class. Processing logic is pretty same for all of these objects with a little differences. How do I keep all logic in public virtual void Work(ObjBase o) ...
0
votes
0answers
12 views

Magento: Multiple Attributes with same (identic) values - inheritable?

I am about to set up an online store and I am kinda "testing" if magento fits my needs. I think I got the idea behind categorizing and attributing products. But I have a question to the attributes ...
0
votes
1answer
18 views

boost multi index container, class with pure virtual functions

I want to create multi_index_container with type A storing objects of type C, which is derived from B which is derived from A. Problem is that in A I have pure virtual function. When I try to compile ...
1
vote
2answers
66 views

When you need a value type and inheritance

I've run into a bit of a problem. I need classes or structs to represent different types of vertices (TextureVertex, ColorVertex, etc). I also need a super class (Vertex) as I need to be able to ...
12
votes
1answer
90 views

Overloading base method in derived class

So I was playing with C# to see if it matched C++ behavior from this post: http://herbsutter.com/2013/05/22/gotw-5-solution-overriding-virtual-functions/ when I came across this very strange behavior: ...
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 ...
-3
votes
1answer
41 views

Java extend generic class

I have a generic class: public class RangeSeekBar<T extends Number> extends ImageView { public RangeSeekBar(T absoluteMinValue, T absoluteMaxValue, Context context) throws ...
0
votes
2answers
89 views

How can I limit class usage?

I have a list of List<object>. How can I limit that only Class1 and Class2 should be used there is list? Class1 and Class2 are basically different. I would guess what there is basic class for ...
1
vote
2answers
42 views

Casting an inherited class back to the base class

What happens to the data stored in the fields of a child class if and instance of that child class is cast back to the inherited class? And how does this work in memory? public abstract class ...
-5
votes
1answer
31 views

Calling constructor of parent class gives undefined [closed]

Class A{ public: int variable; A(): variable(4) {} }; class B : public A{ void function(){ A test = new A() } }; Calling new A in class B gives undefined reference to A:A(). Is ...
2
votes
2answers
56 views

Data inheritance of subclass in Fortran 2003/2008

In Fortran 2003, if an variable is declared as PRIVATE in a superclass, the subclasses will not be able to access it. But if all the variables are declared as PUBLIC, the program will lose the ...
1
vote
1answer
33 views

Java - Ignore default constructor and use constructor with parameters

I am not very well rounded in Java, which is why I am asking this question that is probably very stupid sounding. Nonetheless, I am trying to figure out how to ignore a class's default construct ...
3
votes
7answers
83 views

Java referencing final variable before is has been initialized

I have this superclass Creature and its subclass Monster. Now I have this problem of a final variable being referenced without it being initialized. public class Creature { private int ...
2
votes
2answers
46 views

How to filter base class collection based on a derived class field?

Let's say I have a collection named MyThings that holds objects of the class Thing and I have a class called ShinyThing which is a derived from Thing, so I do: MyThings boxWithMyThings = new ...
1
vote
1answer
36 views

Cannot pass string argument to derived class member function c++ [duplicate]

The following are in main.cpp file: string password; string temp_password; archiveObj.checkPassword(password,temp_password); and the declaration of "checkPassword" is in the derived class ...
0
votes
1answer
26 views

Add OnLoad method to usercontrol

I have several controls that inherit BaseUserControl. BaseUserControl inherits System.Web.UI.UserControl. I want to override OnLoad event like this: public partial class MyControl1 : ...
-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
1answer
23 views

WPF Set Out of the Box Property to Inheritable

Is it possible to change the inheritance settings for a WPF property? Ideally, I would set ToolTipService.ShowDelay at the Window or UserControl level and everything in the visual tree would inherit ...
0
votes
2answers
39 views

Checkbox returned in Event Handler isn't one on form

I'm creating an array of checkboxes on a form dynamically; the code that creates the array looks like this:- checkbox_array(count_of_checkboxes) = New CheckBox if (count_of_checkboxes = 0) ...
3
votes
2answers
35 views

Why resetting prototype does not remove the property from objects?

Im trying to get my head around javascript prototyping & possible inheritance, but I'm certainly missing something. Let's start with simple constructor (function Counter()), adding simple property ...
0
votes
0answers
23 views

onCreateOptionsMenu called for every subclass of BaseActivity

I have abstract BaseActivity class where i want to add some common stuff for application activities and handle menu behaviour. For every subactivity i create, onCreateOptionsMenu is called. I'm not ...
-1
votes
2answers
44 views

Class Diagram for a Quiz

I want to make a Year Question Quiz game in C#. I need help with solving the problem on how to have questions in different categories. A Quiz consists of a question and an answer. But let’s say I ...
3
votes
3answers
39 views

Returning a correct descendant type from a list of base type

I have a base class Foo with a property for identify the primary key from a data base item. Other classes descend from my base class Foo and contains another properties for particularities these ...
2
votes
1answer
33 views

Call child class method using dynamic keyword

I have several classes all implementing an interface IBar. Those classes are BarA, BarB, BarC. I also have a base class Foo: abstract class Foo { void Do(IBar bar) { ...
0
votes
2answers
48 views

Adding property to super class UIView

I'm trying to give all my views a new property called newProperty. Since all the views would have it it would make more sense to add it to a super class. In this case I want to add newProperty to ...
0
votes
1answer
18 views

Error in inheritence mapping in Entity framework 5

I have an existing database with this schema : Table User : UserID, FirstName, LastName Table Manager : ManagerID (PK, FK) Table Coordinator : CoordinatorID (PK, FK) the FKs are referring to the ...
0
votes
0answers
10 views

Extending YoutubePlayerFragment issue

I want to extends a YoutubePlayerFragment and i want attach it to activity at runtime . Now the problem is the public constructor in YoutubePlayerFragment This constructor is public only for ...
0
votes
2answers
22 views

Can one move controls around in a form class derived from another form?

I have created a forms which are derived from another form thus:- Public Class MyForm ' ...etc End Class Public Class MyDerivedForm Inherits MyBaseForm ' ...etc End Class Public Class ...
1
vote
0answers
22 views

How to ensure data integrity when using Table Per Subclass?

I am using the table per subclass strategy in Grails by setting the tablePerHierarchy property of the static mapping field in my superclass to false. This way, Grails creates one table for my ...
3
votes
3answers
42 views

Autowiring Spring superclass

Why does Spring automatically choose the superclass types during autowiring? For instance, if I have @Component public class Foo {} @Component public class Bar extends Foo {} and someone ...
0
votes
3answers
49 views

C++ proper way for solve this inheritence include issue “already has a body”?

Heyo, I have a question about this issue I am having in C++. I am new to C++ and learning. I have experience in object oriented programming so I am looking for the correct way and solve this issue and ...
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 ...
0
votes
5answers
75 views

Inheritance with this and super

Working in Java. I have an abstract class as such: public abstract class Foo { protected Logger log = null; // other stuff public boolean isLoggerSet() { return (this.log != ...
0
votes
3answers
52 views

about inheritance in C++, can a derived class get implemetation from base class without explicitly defining it

The following has the error error LNK2001: unresolved external symbol "public: virtual void __thiscall C::Foo(void)" (?Foo@C@@UAEXXZ) so basically C::Test() cannot inherit implementation of ...

1 2 3 4 5 222