zoukankan      html  css  js  c++  java
  • 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
  • 相关阅读:
    输入设备驱动
    Windows下Eclipse+PyDev安装Python开发环境
    Wireshark does not show SSL/TLS
    error trying to exec 'cc1plus': execvp: 没有那个文件或目录
    json 的key值不能是变量
    获取url参数(jq 扩展包)
    jsonp 完成跨域请求注意事项
    怎样删除数据库表中所有的数据
    sqlserver中数据的四种插入方式
    DataGridView
  • 原文地址:https://www.cnblogs.com/langtianya/p/5442134.html
Copyright © 2011-2022 走看看