Tagged Questions
174
votes
5answers
43k views
'Must Override a Superclass Method' Errors after importing a project into Eclipse
Anytime I have to re-import my projects into Eclipse (if I reinstalled Eclipse, or changed the location of the projects), almost all of my overridden methods are not formatted correctly, causing the ...
3
votes
5answers
174 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
4answers
2k views
How to call a superclass method using Java reflection
I have two classes.
public class A {
public Object method() {...}
}
public class B extends A {
@Override
public Object method() {...}
}
I have an instance of B. How do I call ...
2
votes
4answers
148 views
Java: Force subclasses to override methods of the Superclass
How can I write a method and force the subclasses to override this method. In Eclipse it should show in the Quick-Fix Dialog: "Add unimplemented methods".
Thanks
1
vote
6answers
67 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
2answers
86 views
Overriding the init method in a subclass and calling [super initWith:bla], correct way?
I'm subclassing a class.
I'm overriding a init method. This one: -(id)initWithSomething:(Something*)somet;
this would look like this (in the subclass)
-(id)initWithSomething:(Something *)somet ...
1
vote
4answers
100 views
Un-overiding hashCode
I have the following situation: I have many BSTs, and I want to merge isomorphic subtrees to save space.
I am hashing Binary Search Tree nodes into a "unique table" - basically a hash of BST nodes.
...
1
vote
2answers
2k views
How do you call a method for an Objective-C object's superclass from elsewhere?
If you're implementing a subclass, you can, within your implementation, explicitly call the superclass's method, even if you've overridden that method, i.e.:
[self overriddenMethod]; //calls the ...
0
votes
1answer
36 views
Overriding in subclass after checking a boolean
I plan to override a method in the subclass if a boolean is set to a certain value, and then to switch this value, and have thought of two options:
1. Calling super and checking success
// ...
0
votes
3answers
47 views
View method default behavior for overriding
I'm learning how to use @override and its pretty awesome, right now I'm trying to find out how to view the methods you override. The API (I'm still new, so I may be wrong here) will tell you the ...
0
votes
4answers
441 views
extending superclass and ClassCastException
I have a superclass, which two methods i want to override. Here's my code:
public class MyCustomClass extends SomeSuperClass {
protected MyCustomClass(params) {
super(params);
}
@Override
public ...
-1
votes
4answers
128 views
Call subclass method from a superclass method?
My app has a structure similar to this:
class Father{
a(){ ... }
b(){a();}
}
class Son extends Father{
a(){ ..... }} //override
b() is not overrided.
When I create an instance of Son and I call ...