0
votes
2answers
55 views
C++: When is it approperiate to use multiple inheritance (when is is inapropriate and used) [closed]
Possible Duplicate:
A use for multiple inheritance ?
How is multiple inheritance really a useful construct in C++. Why use it? What are examples of where it can solve problems that can not …
2
votes
5answers
87 views
Upcasting pointer reference
I have the following contrived example (coming from real code):
template <class T>
class Base {
public:
Base(int a):x(a) {}
Base(Base<T> * &other) { }
virtual ~Base() {}
…
1
vote
1answer
41 views
Why access to filed and method differs in inherited class in Java?
class BaseClass {
protected int filed = 1;
public void method() {
System.out.println("+ BaseClass method");
}
}
class DerivedClass extends BaseClass {
private int filed = 2;
…
1
vote
5answers
212 views
Polymorphism and inheritance of static members in C++
Hello,
I need to keep a list(vector) of children for every class, and I've got a tricky problem:
class A
{
protected:
int a;
static vector<A*> children;
public:
A(int a): a(a) …
0
votes
1answer
16 views
Fluent NHibernate table per subclass inheritance mapping
I'm new to NHibernate and Fluent NHibernate. I'm wondering how to properly use Fluent NHibernate with the "table per subclass" mapping strategy.
This is an example of what I'm after. More …
0
votes
1answer
42 views
Inheriting Custom Operators in Python?
If I have class A that defines __cmp__, and class B that extends class A, it seems like I have to redefine __cmp__ in class B. Is this correct?
Is there a better workaround than implementing a …
0
votes
1answer
34 views
Unable set table mapping to Boolean = False
Hello folks!
I am trying to set an inheritance in Entity-Framework, I want to set the mapping when BooleanColumn = True.
I am unable to do so.
0
votes
3answers
52 views
Base Class Awareness of Property Changes in Derived Classes
I was wondering if anyone had a possible solution to the following problem... I have a base class that a series of derived classes will inherit from. The base class cares about whether properties on …
0
votes
8answers
990 views
Why @OneToMany does not work with inheritance in Hibernate
@Entity
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
public class Problem {
@ManyToOne
private Person person;
}
@Entity
@DiscriminatorValue("UP")
public class UglyProblem extends …
2
votes
5answers
259 views
C++ Destructor Behavior
I had a question about C++ destructor behavior, more out of curiosity than anything else. I have the following classes:
Base.h
class BaseB;
class BaseA
{
public:
virtual int …
0
votes
6answers
182 views
Java Inheritance
Hello, I have a question regarding inheritance in Java. If I have this base class
class Parent {
private String lastName;
public Parent() {
lastName = "Unassigned";
}
…
0
votes
0answers
69 views
Inheritance of LINQ to SQL data context
If I inherit one DBML file from another DBML file, is it possible to visually create associations to the data classes from inherited DBML?
3
votes
2answers
73 views
Generic type inference with interface inheritance (co(ntra)-variance?) in C# 3
I have the following two generic types:
interface IRange<T> where T : IComparable<T>
interface IRange<T, TData> : IRange<T> where T : IComparable<T>
…
1
vote
4answers
147 views
C++ design question
Suppose I have a class Base which has a member variable A* my_hash.
I also have class Extended which inherits from class Base. I also have a class B
which extends A.
class Base{
Base(): my_hash(new …
2
votes
3answers
105 views
Why does PHP not automatically call parent constructors?
Fairly straightforward question. In C++ the parent constructor will be implicitly called before the child constructor, so what logic is there for PHP not to do things this way?
EDIT: I've got a good …
