A superclass is a parent or base class that is derived or inherited from by a child class (or subclass). Superclasses are used extensively in object-oriented programming (OOP).
0
votes
1answer
20 views
Calling a superclass method from a subclass in python
I was wondering if a subclass could call its parent static method, and tested it : it works like I hoped!
class A(object):
@classmethod
def static(cls):
print('act on '+cls.__name__)
...
0
votes
1answer
25 views
superclass mismatch: get class object (ruby)
class A
end
class B
end
class Y < A
end
class Y < B # TypeError: superclass mismatch for Y
end
Is there a way to get the class the raises the superclass mismatch?
I would like to know that it ...
0
votes
2answers
30 views
How can I access a method with several swing components from another class? (Java)
Suppose:
public class Window
{
public void Dialog ()
{
JDialog JD = new JDialog();
// add pictures/labels onto JDialog
}
}
And:
public class Main
{
//Suppose here is a GUI with a button that ...
0
votes
1answer
20 views
Superclass of cpp object included in .cc file not header file
I've downloaded a toolkit (namely IRTK from Imperial college) and I have compiled and installed it using CMake.
As part of the installation it has copied all of the relevant header files into ...
0
votes
2answers
102 views
Super constructor call
In Java, if my class extends a super class and by default the first line of the constructor is Super(), are the fields of the super class initialized, or is just the constructor run?
Also, if the ...
0
votes
2answers
47 views
Java abstract variable (superclass use subclass's String)
I have an abstract class Loader:
public abstract class Loader
{
private String EXTENSION = ".xxx";
private String dir;
public abstract Object load(String file);
public abstract ...
0
votes
1answer
39 views
What is the proper way to lazy initialize an abstract property in Objective-C
// In super class:
@property (strong, nonatomic) Foo *foo;
// In sub class:
- (Foo *) foo
{
if(!super.foo) super.foo = [[Foo alloc] init];
return super.foo;
}
Does this make sense? Is it ...
5
votes
2answers
75 views
How do I inherit documentation from super classes in Matlab?
I have a Super class that I've done some extensive documentation on. There are subclasses that inherit from this super class and I would like to reuse the documentation of the super if possible. For ...
0
votes
1answer
22 views
Why to call super class methods from android activity life cycle methods?
Why should we call super class onCreate() method from my activity's onCreate()?
What is the reason behind calling super class methods from every life cycle method? Could you please clarify me ?
0
votes
4answers
49 views
Creating objects of same type as subclass
I am designing a Genetic Algorithms library, and am currently constructing the Genome class. This class includes several methods for creating, mutating, crossing, and evaluating genomes, and will be ...
3
votes
1answer
56 views
Java - Sending values from Subclass
I need some help sending a value from my Subclass to my Superclass.
Public class A {
protected int GameSize;
public void setButtons(){
for(int row = 0; row < GameSize; row++) {
...
0
votes
1answer
44 views
Java - Sending values from Subclass to Superclass
I'm having some trobles sending an value from my subclass to my superclass.
E.x:
public class A {
protected int Age;
public void printAge(){
System.out.println(Age);
}
}
public class B ...
0
votes
1answer
46 views
is there a way for a baseClass to declare protected vars without polluting .h file?
I'm finding it hard to believe that there isn't a straightforward way for a class to declare its protected properties in the .m file (to avoid polluting the .h file with variables that only subclasses ...
1
vote
2answers
44 views
What do superclass implementation of activity lifecycle in android do?
I have been learning android programming and i noticed that all activity life cycle methods have a super class that is implemented in the beginning.
The Android documentation also says, "Your ...
0
votes
1answer
30 views
How to delete superclass entity whose subclass entity has been removed in Hibernate?
There are two entity classes A and B, and instances a, b (a and b have same id). B is subclass of A ( B extends A). I removed an entity "b" from database. Then, I saw that "a" has not been deleted. ...
0
votes
0answers
41 views
groovy: variable scope in closures in the super class (MissingPropertyException)
I have the impression that closures run as the actual class being called (instead of the implementing super class) and thus break when some variables are not visible (e.g. private in the super class). ...
0
votes
2answers
96 views
Entity Framework, C# and super-classes
I have 6 100% equal tables in my Database, the only change is the names.
The look like this:
Offers_1, Offers_2, Offers_3 and so on..
If I use Entity Framework in my C# form I get 6 different ...
0
votes
2answers
40 views
Can a subclass have less parameters than its subclass?
I'm currently tasked with editing code for an asteroid game in java. The main class is finished, but I have to complete the classes for the objects interacting in the game controlled by main. In the ...
0
votes
3answers
73 views
Calling member functions on a parent object?
I have two classes : World, and Entity.
Inside of World I have two Entity pointers which I made like so:
Entity* ent1;
Entity* ent2;
I wanted to allow Entity objects to call World's public member ...
-1
votes
1answer
69 views
How do you inherit super classes into subclasses
I'm trying to create a subclass of my parent class Account. When testing, my subclass appears to be able to access the withdraw, deposit, and date methods of my main Account class, however it's not ...
-6
votes
0answers
60 views
Write an abstract super class encapsulating a vacation [closed]
Write an abstract super class encapsulating a vacation: A vacation has two attributes: a budget and a destination. It has an abstract method returning how much the vacation is over or under budget. ...
1
vote
2answers
100 views
How can I access a hidden member from a derived class?
I have two classes, one derived from the other. These classes both introduce variables with the same name. The variable in the derived class hides that in the super class.
How can I refer to the ...
0
votes
1answer
35 views
Integrating Core Data with a custom class
I've got a Core Data Managed Object Model called Car that looks like this:
.h
@property (nonatomic, strong) NSString *name;
.m
@dynamic name;
And I have a custom class, called CarCache, used ...
1
vote
2answers
101 views
How to call a superclass method of Ext JS 3.4 Window
I have a window class like so:
myWindow = Ext.extend(WindowAddItemUi, {
initComponent: function() {
WindowAddComponentPublic.superclass.initComponent.call(this);
},
close ...
1
vote
4answers
143 views
ArrayList containing different objects of the same superclass - how to access method of a subclass
Hi I'm wondering if there is a simple solution to my problem,
I have an ArrayList:
ArrayList <Animal> animalList = new ArrayList<Animal>();
/* I add some objects from subclasses of ...
1
vote
1answer
53 views
Finding extender from abstract class in static method
I have a set of basic classes,
ei:
public class Item{
}
I want to add feature to extend basic class with Storable ability:
new parameter to keep data from storage in an object
new static method to ...
-2
votes
2answers
102 views
Superclass inherits from a subclass. Coursera. Are they crazy? [closed]
Learn to Program: Crafting Quality Code
Screenshot
This is a video lecture from Coursera Learn to Program Crafting Quality Code Course.
So there is a quiz during the video.
class MyInt(int):
# ...
2
votes
3answers
51 views
Calling a method on object from it's class subclass
I am trying to call a method from the class Weapon, which is a subclass of Item. As you can see from the field I've declared the object currentWeapon as an object of Item, and in the setCurrentWeapon ...
1
vote
1answer
67 views
Can a subclass be referred to as the type of its super class?
I am making a game at school. I have weapons which is a subclass of items.
And I have a field currentWeapon in my class called BattleGround. And I have a method to search and iterate through all items ...
0
votes
2answers
154 views
java, initialize SubClass from SuperClass
public class Base {
//long list of attributes
// no Constructor using fields
// no init methode
// i cannot change this class
}
now i extended the Base Class like:
public class subClass ...
-3
votes
2answers
169 views
C++ Call subclass method from superclass
I have code of the following style:
class SubClass;
class SuperClass;
class SuperClass {
private:
void bar() {
SubClass().foo();
}
};
class SubClass : SuperClass {
public:
...
0
votes
1answer
55 views
Hibernate Inheritance - Structure referring to Superclass
I want to create a structure to manage products in MYSQL using Hibernate 4.1. In general there are two kind of products: SimpleProduct (contains just description and price) and ComplexProduct ...
2
votes
1answer
65 views
Racket - How to access superclass method within overridden method in subclass
Let's say I have a class called "bankAccount". This class has a method called "view" with which the amount of money in the account can be accessed.
Let's also say I have a class called ...
1
vote
1answer
89 views
How can i map this part of the ER to relational schema and what can be the appropriate attributes?
Part of the ER diagram here
This is the direct link without the spaces: h t t p://sdrv.ms/100X2bj
Here, Customer is the super-class, with Private and Business being the sub-classes with a disjoint ...
1
vote
0answers
34 views
MRO and __super__ equivalent in R
Based on @hadley s4 wiki and this warning:
Note that S4 supports multiple inheritance, but this should be used with extreme caution as it makes method lookup extremely complicated.
Multiple ...
0
votes
0answers
14 views
Flash - Game Deciding Coordinates
I am working on flash game for one of my classes. I am having trouble getting the code to work. This is the link to the entire assignment: ...
2
votes
2answers
81 views
How do I access a superclass's constant property within Matlab?
I have a simple class structure like so:
classdef super < hgsetget
properties(Constant = true, Access = private)
PROP1 = 1;
PROP2 = {2 [3 4] [5 6]};
end
methods
...
1
vote
3answers
101 views
Refering to subclasses in the superclass (C++)
I've got a problem with the implementation of my design. There is a superclass defining methods, which have subclasses of this superclass as return values. As you can see here:
#ifndef ...
-1
votes
2answers
40 views
how to display all the fields using the display method in the subclass and from superClass [closed]
How to display all the fields using the display method in the subclass and from superClass,What i want is to display all the fields in the subclass from the superclass
3
votes
5answers
100 views
extend an object returned by a static method in java
I have the following problem.
I have a static method of a library class (that I cannot change) like this:
Loader.loadModel()
it returns an object of type Model.
I have also created a subclass of ...
2
votes
4answers
93 views
Creating a class that is an extension of the java.util.HashMap class
So I'm trying to create an extension of the HashMap class called UniqueHashMap which has all the properties of a the HashMap class, but instead of not being able to have repeated Keys, Values cannot ...
0
votes
1answer
53 views
What is the best aproach to develop and implement a superclass/subclass ED diagram for these two entities?
I was wondering if someone could help me decide what is the best way to develop two simple database entities. I have come up with two ways but I can't see the obvious reason why one would be better ...
4
votes
5answers
128 views
Constructor this() unnecessary?
There was a class U1 that was extending class U.
Class U was empty...
In the constructor of U1 there was this first line, calling the constructor of the superclass...
public U1(Plate plate, int ...
1
vote
2answers
178 views
Advice with super classes and inheritance [closed]
I do not know if I am on the right track or not, but I have hit a dead end. I have read and reread my books chapters about super classes and inheritance and am still completely lost. in this ...
5
votes
2answers
124 views
Call 'grand' parent function from child class in multi-level inheritence [duplicate]
public class GrandParent
{
public void walk()
{
...
}
}
public class Parent
{
public void walk()
{
...
}
}
public class Child
{
public void walk()
{
...
-1
votes
2answers
250 views
Superclass method using overridden subclass methods
This is a strangely worded question so I apologize if it's a duplicate.
Say I have a class foo with method a that calls method b:
public class foo
{
public void a()
{
b();
}
...
0
votes
3answers
93 views
Cannot implement a constructor (Implicit super constructor Item() is undefined)
I'm trying to implement the constructor of a class that has more parameters than the parent class, the only one in common is the title. When I try to implement the constructor in the Book class, it ...
1
vote
1answer
64 views
How to call a parent class's @classmethod from an overridden @classmethod in Python?
Let's say I have a class
class SimpleGenerator(object):
@classmethod
def get_description(cls):
return cls.name
class AdvancedGenerator(SimpleGenerator):
@classmethod
def ...
2
votes
1answer
94 views
Ruby 1.8 vs. 1.9: Determining whether a Ruby singleton class is a subclass of another class
As mentioned in an answer to a previous question, B < A is the easiest way to determine whether a class is a subclass of another. However, this appears to fail in Ruby 1.8 (also REE 1.8) when B is ...
0
votes
1answer
61 views
Why does super class assignment to subclass give an error?
Can someone explain the reason why this has to give an error? - based on the way things are implemented in Java



