在Java中,util
是指java.util
包,該包中包含了許多常用的工具類和數據結構,可以提供各種實用的功能。要使用util
包中的類或方法,需要在代碼中導入該包,然后可以通過創建實例或調用靜態方法來使用。下面是一些常見的使用方法示例:
util
包:import java.util.*;
ArrayList
類(動態數組):ArrayList<String> list = new ArrayList<>();
list.add("Hello");
list.add("World");
System.out.println(list); // 輸出: [Hello, World]
HashMap
類(鍵值對映射):HashMap<String, Integer> map = new HashMap<>();
map.put("Alice", 25);
map.put("Bob", 30);
int age = map.get("Alice");
System.out.println(age); // 輸出: 25
Scanner
類(從標準輸入讀取數據):Scanner scanner = new Scanner(System.in);
System.out.print("請輸入一個整數:");
int num = scanner.nextInt();
System.out.println("您輸入的整數是:" + num);
Random
類(生成隨機數):Random random = new Random();
int randomNumber = random.nextInt(100); // 生成0到99之間的隨機整數
System.out.println(randomNumber);
這只是一些util
包中類的使用示例,還有很多其他的工具類和數據結構可以根據實際需要選擇和使用。