How to get current class's parent class, parent parent class
for example:
class Act extends ActionBarActivity {}
public class Container extends Act {
//I'm in here
}
How to know current class(Container) is ActionBarActivity?
Please sign in to leave a comment.
Hi!
I suppose that you mean java related question, but it's the CLion forum By the way, if you question is how to find it out from IntelliJ IDEA GUI please use "Type Hierarchy action" (Ctrl-H in default keymap) which shows type hierarchy for the class under the cursor.