All super classes of a class

后端 未结 6 1422
情歌与酒
情歌与酒 2020-12-14 01:56

I have a class that extends to another class and that class extends to another class.

class 1 extends class 2 
class 2 extends class 3 
class 3 extends class         


        
6条回答
  •  北荒
    北荒 (楼主)
    2020-12-14 02:23

    You can use getSuperclass() up to the Object.

    But read the doc first to understand what it returns in the case of interfaces etc. There are more methods to play with on the same page.

提交回复
热议问题