Tagged Questions
1
vote
2answers
115 views
Casting 'this' into subclass in superclass constructor
There are two classes: A and B. B is the subclass of A. A stores a reference of B, which may in certain scenarios a reference to this as well.
public B b;
In the constructor of A, is it legal to ...
0
votes
1answer
520 views
Android Java class casting
I am wondering if someone could explain something about a class cast for me.
I am playing around with Android and I have a subclass of Application named ExApp.
I want to call a method of ExApp from ...
2
votes
1answer
144 views
Accessing a submethod of an argument of an overriden method in android?
This must be a noob question, but I can't find the proper wait to achieve the following:
In android, I made a subclass MyView extending a View class. In B, I've defined a method mMethod not present ...