黑马程序员技术交流社区
标题: 关于泛型的问题。。。 [打印本页]
作者: 黑马任雪刚 时间: 2012-7-31 22:15
标题: 关于泛型的问题。。。
//运用泛型交换一个数组中指定两个位置的值。
public class GenericDemo
{
public static void main(String[] args)
{
int[] arr={1,2,3,4,5,6};
demo(arr,2,3);//这句代码怎么老是报错呀?错误信息为:The method demo(T[], int, int) in the type GenericDemo is
//not applicable for the arguments (int[], int, int))
for(int i:arr)
{
System.out.println(i);
}
}
public static<T> void demo(T[] arr,int post1,int post2)
{
T temp=arr[post1];
arr[post1]=arr[post2];
arr[post2]=temp;
}
}
作者: 周坤 时间: 2012-7-31 22:26
- public class Test
- {
-
-
- public static void main(String[] args)
- {
- Integer [] arr={1,2,3,4,5,6};//[color=Red]把int改成Integer就行了。因为基本数据类型的数组,传进去的话是数组,而与下面传进去的T[]arr不匹配。public static<T> void demo(T[] arr,int post1,int post2)[/color]
- demo(arr,2,3);//这句代码怎么老是报错呀?错误信息为:The method demo(T[], int, int) in the type GenericDemo is
- //not applicable for the arguments (int[], int, int))
- for(int i:arr)
- {
- System.out.println(i);
- }
-
- }
- public static<T> void demo(T[] arr,int post1,int post2)
- {
- T temp=arr[post1];
- arr[post1]=arr[post2];
- arr[post2]=temp;
- }
-
- }
复制代码
作者: 王志明 时间: 2012-7-31 22:26
本帖最后由 王志明 于 2012-7-31 22:28 编辑
public static void main(String[] args) {
// 这里要定义成包装类型的,也就是说泛型指定的是未确定的"类"类型,不能使用基本数据类型做泛型的参数
Integer[] arr = { 1, 2, 3, 4, 5, 6 };
demo(arr, 2, 3);// 这句代码怎么老是报错呀?错误信息为:The method demo(T[], int, int) in
// the type GenericDemo is
// not applicable for the arguments (int[], int, int))
for (int i : arr) {
System.out.println(i);
}
}
public static <T> void demo(T[] arr, int post1, int post2) {
T temp = arr[post1];
arr[post1] = arr[post2];
arr[post2] = temp;
}
作者: 余明辉 时间: 2012-7-31 23:38
基础数据类型4类8种,不能作为泛型的参数,你转为相应的对象就没问题了
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) |
黑马程序员IT技术论坛 X3.2 |