getCanonicalName和getSimpleName getName的区别与应用

接口:

Java代码  收藏代码
  1. package com.test;  
  2.   
  3. public interface Fruit {  
  4.   
  5. }  

 

 

一个实现类:

Java代码  收藏代码
  1. package com.test;  
  2.   
  3. public class Apple implements Fruit {  
  4.   
  5. }  

 

基本测试类:

Java代码  收藏代码

 

    package com.test;  
      
    import java.util.ArrayList;  
    import java.util.List;  
      
    public class TestName {  
        public static void main(String[] args) {  
            Fruit apple=new Apple();  
            System.out.println(apple.getClass().getCanonicalName());//返回com.test.Apple  
            System.out.println(apple.getClass().getSimpleName());//Apple  
            System.out.println(apple.getClass().getName());//返回com.test.Apple  
              
            Apple[] arrApple=new Apple[]{};  
            System.out.println(arrApple.getClass().getCanonicalName());//返回com.test.Apple[]  
            System.out.println(arrApple.getClass().getSimpleName());//返回Apple[]  
            System.out.println(arrApple.getClass().getName());//返回[Lcom.test.Apple;  
              
            System.out.println(String.class.getCanonicalName());//返回java.lang.String  
            System.out.println(String.class.getSimpleName());//返回String  
            System.out.println(String.class.getName());//返回java.lang.String  
              
            System.out.println(int.class.getCanonicalName());//返回int  
            System.out.println(int.class.getSimpleName());//返回int  
            System.out.println(int.class.getName());//返回int  
              
            Apple a1=new Apple();  
            Apple a2=new Apple();  
            List<Apple> appleList=new ArrayList<Apple>();  
            appleList.add(a1);  
            appleList.add(a2);  
            System.out.println(appleList.getClass().getCanonicalName());//返回java.util.ArrayList  
            System.out.println(appleList.getClass().getSimpleName());//返回ArrayList  
            System.out.println(appleList.getClass().getName());//返回java.util.ArrayList  
              
        }  
    }  

 

 

实际应用: hql的泛型查询

 

Java代码  收藏代码
  1. public <T> List<T> getRecords(Class<T> c,Date startDate,Date endDate){  
  2.         StringBuilder hql = new StringBuilder("select t from ");  
  3.         hql.append(c.getCanonicalName());  
  4.         hql.append(" t where t.statTime>=:startTime and t.statTime<:endTime ");  
  5.   
  6.         Query query = sessionFactory.getCurrentSession().createQuery(hql.toString());  
  7.         query.setParameter("startTime", startDate);  
  8.         query.setParameter("endTime", endDate);  
  9.           
  10.         return query.list();  
  11.     }  
  12. }  
 
http://blog.csdn.net/wirelessqa/article/details/8151889
posted @ 2016-04-28 12:09  jack_ou  阅读(1977)  评论(0编辑  收藏  举报