Java determine which class an object is

前端 未结 6 1739
悲&欢浪女
悲&欢浪女 2021-01-26 20:36

I have three classes (Carnivore, Herbivore, and Plant) that extend another class (Organism). How can I tell which subclass an

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-26 21:02

    objInstance instanceof Carnivore. Here objInstance is the object you want to test.

提交回复
热议问题