Tagged Questions
14
votes
2answers
993 views
Test whether a Ruby class is a subclass of another class
I would like to test whether a class inherits from another class, but there doesn't seem to exist a method for that.
class A
end
class B < A
end
B.is_a? A
=> false
B.superclass == A
=> ...
11
votes
8answers
2k views
Why aren't Python's superclass __init__ methods automatically invoked?
Why did the Python designers decide that subclasses' __init__() methods don't automatically call the __init__() methods of their superclasses, as in some other languages? Is the Pythonic and ...
5
votes
3answers
252 views
Initialize an object with a superclass' instance
Let's say a have a Superclass and an instance of this class superclassObject.
I create a derived ClassA.
How can I instantiate (initialize) an object classAObject of the derived class in a such ...
4
votes
1answer
46 views
Interfacing with super and subclass constructors
I have had trouble finding help in the matlab documentation and previous questions about using matlab inheritance and class constructors to make an interface. To make it tidy, within a package.
...
4
votes
11answers
469 views
When to implement an interface and when to extend a superclass?
I've been reading a lot about interfaces and class inheritance in Java, and I know how to do both and I think I have a good feel for both. But it seems that nobody ever really compares the two side by ...
3
votes
5answers
155 views
How to avoid excessive code duplication when using enums in Java
I am refactoring some legacy code and have come across a problem which I'm sure has a elegant solution - but I can't quite get there.
Initially there were a load of classes which extended an abstract ...
3
votes
2answers
461 views
Can't find interface declaration for my IOS view controller
I'm getting this error: "Cannot find interface declaration for 'BaseViewController', superclass of 'ViewController'. Here's the situation:
AppDelegate:
Subclass of NSObject
In the header file:
...
2
votes
2answers
54 views
JavaScript inherit object values
is it possible to inherit an Object (reference) value from a class?
function A()
{
this.x = {};
}
function B()
{
this.y = {};
}
B.prototype = new A();
//...
var b1 = new B();
var b2 = new ...
2
votes
3answers
66 views
Java set super instance of instance
I might just be unable to google for the right words, but I can't find an answer to the following question.
Is it possible to explicitly set the superclass of a new class instance. E.g. I have a ...
2
votes
1answer
89 views
Calling parent's __call__ method within class
I'd like to call a parent's call method from inherited class
Code looks like this
#!/usr/bin/env python
class Parent(object):
def __call__(self, name):
print "hello world, ", name
...
2
votes
1answer
51 views
Where to put utility methods in Ruby superclass
I'm writing a Ruby object that will be used as the superclass of arbitrary classes that inherit from it. The class has a couple well-defined methods, along with many small utility methods, to factor ...
2
votes
8answers
98 views
Something weird is happening to the Person
In the following java code
public class Person {
int age = 18;
}
class Student extends Person {
public Student() {
this.age = 22;
}
public static void main(String[] args) ...
2
votes
4answers
793 views
Can I change a private readonly inherited field in C# using reflection?
like in java I have:
Class.getSuperClass().getDeclaredFields()
how I can know and set private field from a superclass?
I know this is strongly not recommended, but I am testing my application and ...
1
vote
3answers
42 views
Calling an overridden method, superclass an calls overridden method
This code throws an exception, AttributeError, "wtf!", because A.foo() is calling B.foo1(), shouldn't it call B.foo1()? How can I force it to call A.foo1() (and any method call inside A.foo() should ...
1
vote
2answers
126 views
Netbeans Override Annotation
i'm trying to create a new class that inherits from an abstract superclass (contains three abstract methods). The issue is that netbeans gives me a warning : add @override annotation. why should i do ...
1
vote
5answers
129 views
Inheriting from two Java classes
I know Java forbids inheriting from multiple classes and allows implementing any number of interfaces. However, while interfaces are good for polymorphism, they cannot contain any actual code that ...
1
vote
2answers
114 views
Confused about Java inheritance
I was told that for a Java subclass it can inherit all members of its superclass. So does this mean even private members? I know it can inherit protected members.
Can someone explain this to me. I ...
1
vote
2answers
232 views
How can I parse parameters in subclass before calling constructor of the superclass?
public Subclass(String[] parameters) throws IllegalArgumentException {
super("Rectangle", Double.parseDouble(parameters[0]),
Double.parseDouble(parameters[1]),
...
0
votes
6answers
48 views
A class extends a superclass called Object
If a class Puppy inherits Object by default, if I want my Puppy class to extend a superclass Dog, does the Puppy still extends Object at all times?
I'm not too sure about this but I think the Puppy ...
0
votes
1answer
45 views
JavaScript: Create subclass from inside superclass instance
I am quite experienced with coding in Javascript, but there's still one thing I can't really wrap my head around.
I have a superclass, let's say Category. Now I want to create some instances of a ...
0
votes
1answer
42 views
networkx: 'super' object has no attribute 'node'
I try extend a class from networkx.DiGraph
import networkx as nx
class branch(nx.DiGraph):
def __init__(self,g,raiz):
self.b=super(branch,self)
self.b.__init__(g)
self.r = ...
0
votes
1answer
38 views
Trivial Inheritance with JavaScript
function StringStream() {}
StringStream.prototype = new Array();
StringStream.prototype.toString = function(){ return this.join(''); };
Calling new StringStream(1,2,3) gives an empty array
x = new ...
0
votes
3answers
143 views
Call subclass's method from its superclass
I have two classes, named Parent and Child, as below. Parent is the superclass of Child I can call a method of the superclass from its subclass by using the keyword super. Is it possible to call a ...
0
votes
4answers
122 views
Java: Inherited class constructor is calling Super class
While creating a java program i encountered a problem,
A subclass constructor is throwing an Error by calling the Superclass's method
The code is similar to this :
class Manage
{
public static ...
0
votes
1answer
49 views
class definition dependence on runtime
in my webapp I made two different sessionhandler classes inheriting from a class called SessionHandler
Now I'd like to initiate the appropriate handler (dependent on a cookie value.)
Background: My ...
0
votes
0answers
148 views
JavaScript SubClass and SuperClass
I'm been working in javascript on use of SubClass and SuperClass, but i cant make this work. I've been looking to a lot of examples, but nothing work so far.
The basic code i need is this:
// ...
0
votes
1answer
95 views
How to programmatically find list of classes that have inherited a particular class in Java
I have a class called MyClass. Is it possible to programmatically find a list of classes that have inherited MyClass?
I know we can use reflection to discover all the superclasses of a given class, ...
0
votes
2answers
187 views
how to initialize an object of subclass with an “existing object of superclass” in objective-C
I have subclassed NSException class to create CustomException class.
Whenever I catch an exception in code (in @catch), i want to initialize an object of CustomException (subclass of NSException) ...
0
votes
9answers
1k views
Java: Can a class inherit from two super classes at the same time?
I have a class Journey which I want to make a superclass and another class plannedjourney.
The plannedjourney class extends JFrame since it contains forms..However I also want this class to extends ...
0
votes
3answers
323 views
How can i initialize superclass params from within the child c-tor in C++?
Watch the following example:
class A {
public:
A(int param1, int param2, int param3) {
// ...
}
};
class B : public A {
public:
B() : m_param1(1), m_param(2), m_param(3), ...
0
votes
2answers
111 views
Can I change the super of a class?
Is it somehow possible to choose the super of a class (preferably in the alloc or init method) so my class inherits from something else?
0
votes
3answers
127 views
inheritance problem OOP extend
If a Father is a Parent and a Parent is a Person and a Person has a Father I create the following:
class Person{
Father father;
}
class Parent extends Person{}
class Father extends Parent{}
...
0
votes
2answers
94 views
Is it possible to use inheritance in this situation? (Java)
I have ClassA and ClassB, with ClassA being the superclass.
ClassA uses NodeA, ClassB uses NodeB.
First problem: method parameters. ClassB needs NodeB types, but I can't cast from the subclass to ...
-1
votes
3answers
103 views
Java Inheritance - calling superclass method
Lets suppose I have the following two classes
public class alpha {
public alpha(){
//some logic
}
public void alphaMethod1(){
//some logic
}
}
public class ...