Returns the runtime class of an object. That Class object is the object that is locked by static synchronized methods of the represented class.
()
| 43 | * Returns the runtime class of an object. That Class object is the object that is locked by static synchronized methods of the represented class. |
| 44 | */ |
| 45 | public final java.lang.Class getClass() { |
| 46 | return getClassImpl(); |
| 47 | } |
| 48 | |
| 49 | private native final java.lang.Class getClassImpl(); |
| 50 |