码迷,mamicode.com
首页 > 编程语言 > 详细

泛型数组

时间:2015-06-01 20:26:14      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:

public class GenericArray {
    public static void main(String args[]) {
      String str[] ={"呵","呵呵","呵呵呵"};
        tell(str);
    }

    public static <T> void tell(T arr[]) {
        for (int i = 0; i < arr.length; i++) {
            System.out.println(arr[i]);
        }


    }
}

 

泛型数组

标签:

原文地址:http://www.cnblogs.com/sflik/p/4544762.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!