logo

Metoda objektu Java getClass().

getClass() je metoda třídy Object. Tato metoda vrací runtime třídu tohoto objektu. Objekt třídy, který je vrácen, je objekt, který je uzamčen statickou synchronizovanou metodou reprezentované třídy.

Syntax

 public final Class getClass() 

Návraty

Vrátí objekty Class, které představují runtime třídu tohoto objektu.

Příklad 1

 public class JavaObjectgetClassExample1 { public static void main(String[] args) { Object obj = new String('JavaTpoint'); Class a = obj.getClass(); System.out.println('Class of Object obj is : ' + a.getName()); } } 
Otestujte to hned

Výstup:

 Class of Object obj is : java.lang.String 

Příklad 2

 public class JavaObjectgetClassExample2{ public static void main(String[] args) { Object obj1 = new String('Facebook'); Class a = obj1.getClass(); System.out.println('Class of Object obj is : ' + a.getName()); } } 
Otestujte to hned

Výstup:

 Class of Object obj is : java.lang.String