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.
1
vote
1answer
28 views
Cannot pass string argument to derived class member function c++
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
20 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 : ...
-2
votes
0answers
26 views
Java API uses which the following extensively:
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
17 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
1answer
33 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
26 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
16 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
41 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
36 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
30 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
44 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
15 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
9 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
20 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
18 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
34 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
43 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
69 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
74 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
50 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 ...
-3
votes
2answers
28 views
Concrete method in abstract class
I understand an abstract class may contain abstract and concrete methods (i.e with body implementation). My question are: can subclasses inherit/override concrete methods from an abstract superclass. ...
1
vote
1answer
37 views
Javascript - KineticJS create own class
How to create a new class based on KineticJs Sprite class. I'm trying like this:
(function() {
Kinetic.MyCircle = function(config) {
this._initMyCircle(config);
};
...
1
vote
3answers
60 views
overriding equals method when dealing with inheritance
I have been reading about how best to override the equals method when dealing with subclasses and here I have found quite a few posts. They recommend different ways of implementing a solution using ...
0
votes
2answers
154 views
Inheritance C++
I have the following problem with inheritance (I would love to google it, but don't know the correct keywords it seems).
I have a Module class that implements IModule interface with function A(). I ...
1
vote
0answers
23 views
Entity Framework 4 inheritance issue when deployed
I have an ASP.NET page using EF 4,
It has a couple of tables linked using an inheritance relationship. Locally when running on the ASP.NET Development Server it all works fine, when I deploy to IIS ...
5
votes
3answers
98 views
why can a base pointer point to derived object only under public inheritance?
I think its because the base class data members and methods wont be accessible , but I'd like some more clarity on this. Also, is this the reason why polymorphism (using virtual functions) is possible ...
-1
votes
4answers
70 views
Why can you not inherit from a class whose constructor is private?
Why does Java disallow inheritance from a class whose constructor is private?
1
vote
0answers
49 views
Simple javascript inheritance using $.extend and module pattern
I have wondered for a couple years now what people think of doing inheritance with a module-pattern-esque constructor pattern and WITHOUT normal prototypal inheritance. Why do programmers not use a ...
0
votes
1answer
33 views
How do I use an initializer list with a base class?
Given the following:
struct A
{
int foo;
int bar;
};
struct B : public A
{
int baz;
};
How would I construct a B with an initializer list that also constructs the elements in A? The ...
1
vote
2answers
24 views
Extending SQLServerPreparedStatement in java
i'm trying to serialize a prepared statement and store it in a file as object but the object created by my sql driver is of type 'SQLServerPreparedStatement' and is not serializable so i tried to ...
0
votes
2answers
33 views
Subclassing and inheritance best practice
I am having a problem understanding the best practises for creating classes and subclasses of them using inheritance.
Lets say, I want to implement 3 type of users in my project
Admin, User and ...
1
vote
1answer
30 views
Spring Data JPA + Hibernate: How do I use a repository on abstract super class for object retrieval?
I am asking as a follow up to this question. I am doing the exact same thing and it does not work, meaning it still gives an Exception indicating attempting to instantiate an abstract class:
...
5
votes
4answers
136 views
What properties are guaranteed by constructors in Java?
I used to think that, intuitively speaking, a constructor in Java is the thing that makes an object, and that nothing can touch that object until its constructor returns. However, I have been proven ...
-2
votes
1answer
40 views
Declaration of child method should be compatible with that of parent method in PHP 5.3.13 [duplicate]
I get the following error running PHP 5.3.13 and I cannot see why.
Declaration of CustomCourse::toArray() should be compatible with that
of BaseCourse::toArray()
This is my PHP code below, ...
-1
votes
0answers
46 views
Python classes - why do my lists get over-written and not append
I am new to Python classes and am confused about the behavior of the mutable variables.
I have created a dictionary of classes of different county attributes, and that seems to work fine. However, ...
2
votes
2answers
55 views
Confused by the use of Parent to Child in a constructor
I hope I can get some clarification regarding this issue. So a class hierarchy looks like this:
AbstractClass, ConcreteClass1 and ConcreteClass2. ConcreteClass1 extends AbstractClass and ...
3
votes
1answer
84 views
Inconsistent accessibility: base class is less accessible than child class
I am reading book "C# 4.0 in a nutshell" by Joseph Albabari and Ben Albabari. From there I find a topic restrictions on access modifiers. Page 91, Topic "Restrictions on Access Modifiers".
Quoting ...
3
votes
3answers
109 views
how to flatten an inherited class?
Is there a way to flatten inherited classes to discover which functions belong to what class?
if you have a class like:
public class Person
{
public String name;
public void setName(String ...
0
votes
1answer
58 views
Creating a window that inheritate from an interface/abstract class and Window
I'm creating a WPF application and I encountered a problem with the inheritance.
I have a class called DataHandler that make a link between GUI class and data class.
The code need to stay open, ...
1
vote
4answers
93 views
What is the alternative to Comparator<T> when using composition over inheritance?
While refactoring a Java project to use composition and no inheritance, I have remaining a problem where polymorphic sorting of Collections was performed.
Inheritance example:
public class AClass
{
...
1
vote
1answer
29 views
build fails when a class in a referenced library is extended
Good day
I am using maven to build my java project. I've added a log4j jar as a dependency and tried to extend its RollingFileAppender class. I tried to build it again and surprisingly an error ...
0
votes
1answer
34 views
Calling base class methods with interface reference variable
I have a base class and an interface. Now I am creating a subclass from these. If I create a reference variable of the interface type to point to an object of the child class, can I access the base ...
0
votes
1answer
14 views
How do you Expose Inherited Entities using WCF and OData?
If I have an OData inheritance hierarchy exposed by WCF data services how do I expose the subclass entity as its own entity set? What URI should I use to access it?
Let's say I have an OData URL as ...
1
vote
1answer
12 views
NDepend and Inheritance Diagram in VS 2010
Is there a way to draw the inheritance tree diagram with NDepend?
(I can only find the Dependency diagrams which are not good for me).
If not, does anyone know of a tool that can do so?
13
votes
4answers
347 views
What is the difference between a class having private constructor and a sealed class having private constructor?
Is there any difference between A and B?
Class A has private constructor:
class A
{
private A()
{ }
}
Class B is sealed and has a private constructor:
sealed class B
{
private B()
...
0
votes
0answers
36 views
Modular architecture for both models and views in Djagno
I want to make a Foo app that can work with other apps in a way where the other apps "inherit" models, views, and templates from the Foo app.
Set up
I'm making a Django app for generic foos. 80% of ...
2
votes
2answers
64 views
Using object inside constructor
I am creating my own vector class inheriting the STL one. I have a problem while creating the object.
Here is my class.
using namespace std;
template <class T>
class ArithmeticVector : ...
-1
votes
1answer
11 views
Looking for a way to dynamically control multiple svg files from one master template
I'm working on designing some board games that involve cards. This ends up involving a lot of busy work, because if I change something about how all the cards look, I have to go to 54 different svg ...
1
vote
5answers
49 views
Calling a virtual function on a reference
In the following code, why does the last call of eat() on the reference c return "An animal b is eating." ? From my understanding, c is a reference to instance b of the derived class Dog and eat() is ...
3
votes
8answers
98 views
new keyword in java
New to java, and still struggling with new keyword and inheritance:
public class A1 {
void a_method (){
System.out.println("Inside A1 method");
}
}
public class A2 extends A1{
...




