一、JDK1.5
1.scanner的用法:
public class ScannerTest {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// boolean i=sc.nextBoolean();
// byte i=sc.nextByte();
// short i=sc.nextShort();
// int i = sc.nextInt();
// long i=sc.nextLong();
// float i=sc.nextFloat();
// double i=sc.nextDouble();
// String i=sc.next();
// System.out.println(i);
System.out.println("请输入一个日期如:1989 01 06");
int year = sc.nextInt();
int month = sc.nextInt();
int day = sc.nextInt();
System.out.println("你输入的日期为" + year + "年" + month + "月" + day + "日!");
}
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// boolean i=sc.nextBoolean();
// byte i=sc.nextByte();
// short i=sc.nextShort();
// int i = sc.nextInt();
// long i=sc.nextLong();
// float i=sc.nextFloat();
// double i=sc.nextDouble();
// String i=sc.next();
// System.out.println(i);
System.out.println("请输入一个日期如:1989 01 06");
int year = sc.nextInt();
int month = sc.nextInt();
int day = sc.nextInt();
System.out.println("你输入的日期为" + year + "年" + month + "月" + day + "日!");
}
}
2.Java 中新增的 foreach 的用法(由于这个用法本人曾经写过,在此不再重复,直接引用)
3.泛型,枚举
4.Java反射机制 (直接引用)
5.Annotation(直接引用)