在Java中,System類是一個預定義的類,它提供了一些有用的字段和方法,例如訪問標準輸入、輸出和錯誤流,獲取系統屬性等。在使用System類時,你不需要顯式地導入它,因為它是java.lang包的一部分,該包在Java程序中默認被導入。
關于System類中的數據類型選擇,這里有一些常用的字段和方法:
System.out.println("Hello, World!");
Scanner scanner = new Scanner(System.in);
String input = scanner.nextLine();
System.out.println("You entered: " + input);
System.err.println("An error occurred!");
long currentTime = System.currentTimeMillis();
System.out.println("Current time in milliseconds: " + currentTime);
System.exit(0); // 正常退出
在使用System類時,你需要根據你的需求選擇合適的字段和方法。例如,如果你需要輸出文本,可以使用System.out;如果你需要讀取輸入,可以使用System.in;如果你需要獲取當前時間,可以使用System.currentTimeMillis()等。