字符串“1,2,3“转成集合[1,2,3]

字符串"1,2,3"转成集合[1,2,3]
字符串“1,2,3“转成集合[1,2,3]_第1张图片
补充: 增强for循环

定义:
ElementType (元素类型) element(随意起的名称):arrayName(集合名称)

for(ElementType element: arrayName){};

举例:

//增强for循环
 int[] num = {1,2,3,4,5,6};
    for(int i: num){
    System.out.print(i);
  }
//普通循环
 int[] num = {1,2,3,4,5,6};
 for(int i = 0; i <= num.length; i++){
    System.out.print(num[i]);
 }

你可能感兴趣的:(字符串“1,2,3“转成集合[1,2,3])