Tagged Questions

14
votes
2answers
997 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
339 views

java when do you need to explicitly call a superclass constructor

So say I have a subclass that extends a superclass. In what scenarios do I need to explicitly type super() to get the superclass constructor to run? I'm looking at an example in a book about ...
5
votes
5answers
1k views

Java: Superclass to construct a subclass on certain conditions, possible?

I have this condition public class A { public action() { System.out.println("Action done in A"); } } public class B extends A { public action() { ...
4
votes
1answer
47 views

How to get the list of class that have a common S4 superclass in R

In R, how do I get the list of subclass of a S4 superclass? I found showClass("mySuperClass",complete=FALSE) but it only prints the result. I would like to store it in a vector to use it.
3
votes
3answers
197 views

Java best practices: Put/Get SubClass objects into HashMap that expects SuperClass objects

Let's say I instantiate a HashMap with SuperClass as value-type. I then add SubClass objects as values to the Map. When I retrieve those values from the Map, they are returned as objects of type ...
3
votes
7answers
1k views

Getting the name of a sub-class from within a super-class

Let's say I have a base class named Entity. In that class, I have a static method to retrieve the class name: class Entity { public static String getClass() { return ...
2
votes
2answers
48 views

Core Data convert a superclass instance into a subclass instance?

What's the best way to programmatically convert an NSManagedObject-subclass (User) instance into an instance of its subclass (AccountUser)? Setup AccountUser inherits from User : NSManagedObject ...
2
votes
8answers
92 views

Java, is it possible to 'convert' object from subclass to object from superclass

I have two classes Student and Tutor. Tutor is basically a student (Tutor extends Student) who has facultyID. Once his contract is complete, he returns to being just a student. So can I somehow ...
2
votes
2answers
131 views

Objective-C: Call Class Method of Subclass

Let's say I have an Objective-C class called MyBaseClass and a subclass called MySubclassedClass. The MyBaseClass has two class methods: + (UIColor *)backgroundColor; + (UIImage *)backgroundImage; ...
2
votes
3answers
106 views

List<A> refering to a List<subclass-of-A>

If I have a Class A that contain a List of children with class A like public Class A { protected List<A> children = new ArrayList<A>(); ... } is it then possible in a subclass B ...
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
1answer
127 views

Java workaround for subclass forced to call super() in constructor?

I am editing a program that uses a RandomAccessFile object, and I want to come up with my own RandomAccessFile class that uses a different source for the data other than a file object (it's an Amazon ...
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) ...
1
vote
6answers
65 views

super of sub function

I have a function in my superclass (Speler) that is called kiesKaart: public Kaart kiesKaart(int spelerIndex){...} In my subclass function, I have the same function with an other parameter that ...
1
vote
3answers
48 views

Referring to any of the subclasses of a particular superclass in Java

Ok guys, here's a simple question that I couldn't quite manage to figure out on my own. Any help is greatly appreciated! Let's say I have an abstract class Superclass, from which I derived ...
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
1answer
325 views

How do I change subclass' variable from superclass?

For some time now I have been making a very easy game for iPhone in flash using as3. Recently I came in contact with a small problem, which is why I am posting this! The problem: I have a superclass ...
1
vote
1answer
302 views

warning: incompatible Objective-C types assigning superClass to subClass

Assume a valid super class, and a valid subclass ie the classes work. the following line in a constructor of the subclass self = [super init] ; throws the following warning // warning: incompatible ...
1
vote
2answers
41 views

Question regarding subclassing

This is probably asked before but I have no idea what to search for. This is my hierarchy now: NSObject > FirstSubclass > SecondSubclass. But I'm going to implement a new feature in my app which ...
1
vote
2answers
1k views

Reflection: cast an object to subclass without use instanceof

I have this simple interface/class: public abstract class Message {} public class Message1 extends Message {} public class Message2 extends Message {} And an utility class: public class Utility ...
1
vote
2answers
292 views

How do you put a subclass method into a superclasses JLabel?

So here's the class and the super class, question to follow: TestDraw: package project3; import java.awt.BorderLayout; import javax.swing.JFrame; import javax.swing.JLabel; public class TestDraw ...
0
votes
2answers
66 views

PHP Call Superclass Factory Method from Subclass Factory Method

I am writing a php app with subclasses and since I want to have multiple ways to create an object I am doing different factory methods instead of multiple constructors. I have a User with factory ...
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
2answers
63 views

How to call a method in a class hierarchy?

I have this super class which extends from another class public abstract class AbstractDOEMessageFinderAction extends BasicObjectFinder { public Object performBasicSearch() { // works ...
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
22 views

overriding class methods: including the superclass method in the subclass method JAVA

So I have these to classes, one is my superclass the other is my subclass. I am having trouble calling my sub class method in my superclass method so I can get these results also. the methods are ...
0
votes
6answers
82 views

Superclass and Subclass Java

I have my superclass called "BossCraft" which includes a void method labeled "move". I also have a class that extends BossCraft called SharkBoss, which also has a void "move" method. Is it possible ...
0
votes
2answers
85 views

Calling sub class method from the super class in Objective C

My original question id here. Actually I need more clarification about this problem. Consider the following scenario: There are three classes in my project. Say A, B & C. These 3 classes have ...
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
2answers
76 views

RoR: Super and Sub classing controllers

So.. i have a method in a super controller that is the same as one in the sub controller.. all except for the redirect_to if the item doesn't save.. subclass method: def create some logic respond_to ...
0
votes
1answer
111 views

Error populating ObservableCollection

I have this code: ObservableCollection<GuiQuestionCluster> clusters = new ObservableCollection<GuiQuestionCluster>(this.ExaminationViewModel.Examination.QuestionClusters); So, ...
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
2answers
146 views

C# viewmodel: model --> Can't get typecasting working

I am creating a linq-to-sql model with EF, and have a class that works well, however, I want to be able to make additions to the class and not have them overwritten when I make changes with EF, so I ...
0
votes
5answers
757 views

Java: Superclass and subclass

Can a subclass variable be cast to any of its superclasses? Can a superclass variable be assigned any subclass variable? Can a superclass be assigned any variable? If so, can an interface variable ...
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
1answer
97 views

Simple null reference bug thats killing me (Java)

Alright so I am messing around with some code in java and I am getting a wierd error. I have my class Chaos which has a Window variable FSW, public as well. Now I have another class called Look. Chaos ...
0
votes
1answer
84 views

Retrieve Collection of Subclasses Based on Column Value

The title is a bit weird, so let me clarify. I have two objects, Garage and Vehicle, in a one-to-many relationship. There are multiple types of vehicles, such as car and truck; the type is persisted ...
0
votes
5answers
573 views

why does initializing subclasses require calling the super class's same init function?

I have heard that when you have a subclass, you are supposed to initialize the superclass with the same init function from within the subclass's init. What I mean is that the subclass's init should ...
0
votes
1answer
337 views

C++ superclass Array yet access subclass methods?

i have an accounts class from that i have 3 types of accounts savings, credit, and homeloan. i created a binary search tree to hold all the accounts as type account how do i now access the methods ...
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
1answer
121 views

What's my best approach on this simple hierarchy Java Problem?

First, I'm sorry for the question title but I can't think of a better one to describe my problem. Feel free to change it :) Let's say I have this abstract class Box which implements a couple of ...
0
votes
1answer
492 views

Use Automapper to flatten sub-class of property

Given the classes: public class Person { public string Name { get; set; } } public class Student : Person { public int StudentId { get; set; } } public class Source { public Person ...
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 ...
0
votes
4answers
258 views

Use a subclass object to modify a protected propety within its superclass object

Sorry for the crappy title I failed to think of a better version for my Java question. I am right now using Java version: 1.6.0_18 and Netbeans version: 6.8 Now for the question. What I've done is ...
0
votes
1answer
313 views

Hibernate: How do I link a subclass to its superclass?

I'm having a little problem setting up my webshop project. Thing is, I have a User() superclass and two subclasses, PrivateUser and BusinessUser. Now, I'm not quite sure how to get my head around ...
0
votes
3answers
616 views

Is it possible to access variable of subclass using object of superclass in polymorphism

how can i access state varibale of class keyboard with object of class kalaplayer /** * An abstract class representing a player in Kala. Extend this class * to make your own ...
0
votes
1answer
316 views

How to invoke a method with a superclass

I'm trying to invoke a method that takes a super class as a parameter with subclasses in the instance. public String methodtobeinvoked(Collection<String> collection); Now if invoke via ...

1 2