Get Class Name:
In the example given below we will l
earn how to get name of the particular class with package name. 
getName() method returns fully qualified name of the particular class in string format.
Here is the code:
 
      import java.util.Calendar; 
import java.math.BigDecimal; 
  
public class GetClassName { 
  public static void main(String[] args) { 
  Class cl = String.class; 
  System.out.println("Class Name: " + cl.getName()); 
 
  cl = Object.class; 
  System.out.println("Class Name: " + cl.getName()); 
 
  cl = Calendar.class; 
  System.out.println("Class Name: " + cl.getName()); 
  
  cl = BigDecimal.class; 
  System.out.println("Class Name: " + cl.getName()); 
  } 
}           |    
Output will be displayed as:
 

 
Related Post:
 
No comments:
Post a Comment