Comment puis-je obtenir le nom de la classe
String.class.getName() returns java.lang.String
Je ne suis intéressé que par la dernière partie, c'est-à-dire que seule String
Any Api peut le faire?
Comment puis-je obtenir le nom de la classe
String.class.getName() returns java.lang.String
Je ne suis intéressé que par la dernière partie, c'est-à-dire que seule String
Any Api peut le faire?
Réponses:
getSimpleName()
est plus facile d'accéder au nom de la classe moins le nom du package. Syntaxe: object.getClass().getSimpleName()
Sample code
Les deux méthodes ci-dessous fonctionnent bien.
System.out.println("The Class Name is: " + this.getClass().getName());
System.out.println("The simple Class Name is: " + this.getClass().getSimpleName());
Output as below:
The Class Name is: package.Student
The simple Class Name is: Student
or programmaticaly
String s = String.class.getName();
s = s.substring(s.lastIndexOf('.') + 1);
.
is found.
int[]
, the result is "[I"
.)
You can use following simple technique for print log with class name.
private String TAG = MainActivity.class.getSimpleName();
Suppose we have to check coming variable value in method then we can use log like bellow :
private void printVariable(){
Log.e(TAG, "printVariable: ");
}
Importance of this line is that, we can check method name along with class name. To write this type of log.
write :- loge and Enter.
will print on console
E/MainActivity: printVariable:
Social.class.getSimpleName()
getSimpleName() : Returns the simple name of the underlying class as given in the source code. Returns an empty string if the underlying class is anonymous. The simple name of an array is the simple name of the component type with "[]" appended. In particular the simple name of an array whose component type is anonymous is "[]".