-
java Arrays.asList的用法
-
import java.util.Arrays;
-
import java.util.List;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
public class AsListTest {
-
-
public static void main(String[] args) {
-
-
-
-
-
int[] a_int = { 1, 2, 3, 4 };
-
-
List a_int_List = Arrays.asList(a_int);
-
foreach(a_int_List);
-
-
foreachForBase(a_int_List);
-
-
-
Integer[] a_Integer = new Integer[] { 1, 2, 3, 4 };
-
List a_Integer_List = Arrays.asList(a_Integer);
-
foreach(a_Integer_List);
-
-
-
a_Integer_List.set(0, 0);
-
foreach(a_Integer_List);
-
foreach(a_Integer);
-
-
a_Integer[0] = 5;
-
foreach(a_Integer_List);
-
foreach(a_Integer);
-
-
-
-
-
-
-
-
-
-
-
a_int[0] = 5;
-
foreachForBase(a_int_List);
-
foreach(a_int);
-
-
}
-
-
-
private static void foreach(List list) {
-
for (Object object : list) {
-
System.out.print(object + " ");
-
}
-
System.out.println();
-
-
}
-
-
private static void foreachForBase(List a_int_List) {
-
int[] _a_int = (int[]) a_int_List.get(0);
-
foreach(_a_int);
-
}
-
-
private static void foreach(int[] a_int) {
-
for (int i : a_int) {
-
System.out.print(i + " ");
-
}
-
System.out.println();
-
}
-
-
private static void foreach(Integer[] _a_Integer) {
-
for (int i : _a_Integer) {
-
System.out.print(i + " ");
-
}
-
System.out.println();
-
}
-
}
-
相关阅读:
jquery插件课程1 幻灯片、城市选择、日期时间选择、拖放、方向拖动插件
博客园随笔如何自动生成目录(原理:页脚js函数且执行)
JAVA web四个属性的范围汇总
关于继承modelDriven接口action的ajax来电参数
Objective-C基调(4)Category
Easyui使用记录
jQuery地图热点效应-后在弹出的提示鼠标层信息
跨境移动互联网的魅力演绎,hao123无论成就下一个条目?
启示—地点IT高管20在职场心脏经(读书笔记6)
C# 获得Excel工作簿Sheet页面(工作表)集合的名称
-
原文地址:https://www.cnblogs.com/lechance/p/4373181.html
Copyright © 2020-2023
润新知