61、
62、
date类
63、
基本类型 + 引用类型
64、
file类
65、
util包scanner类
import java.util.Scanner;
public class Test{
public static void main(String[] args){
String str="1 2 3 4 5 6 7 8 9";
Scanner scanner=new Scanner(str);
int total=0;
while(scanner.hasNext()){
total+=scanner.nextInt();
}
System.out.println("TOTAL:"+total);
scanner.close();
}
}
66、
多线程
67、
多线程
68、
多线程 -- 直接执行run方法
69、
多线程
70、
多线程
转载于:https://blog.51cto.com/eread/1329503