Get Concrete Class name from Abstract Class

Viewed 45367

In Java, inside an abstract class can I get the instance of the concrete class that extends it?

2 Answers

Thread.currentThread().getStackTrace()[2].getClassName()

Related