1.首先来弄下两个set集合,因为set要简单一些。 源码如下: public class Test { public static void main(String[] args) { Set<String> set = new HashSet<String>(); Set<String> set1 = new HashSet<String>(); set.add("s"); set.add("s1"); set.add("s2"); set.add("s3"); set1.ad...
int[] scores;scores = new int[] {1,2,3,4};// 上面两步可以合为一步int[] scores = {1,2,3,4};// 方式二 1. 遍历数组 for 循环遍历数组 foreach 遍历数组:foreach 不是 java 中的关键字,是 for 语句的特殊简化版。在遍历数组、集合时更方便 int[] scores = {1,2,3,4};for (int sc...