在Java開發中,有很多常用的類和方法可以提高開發效率,以下是其中一些常見的:
// 常用的Math類中的方法
Math.abs(-5); // 返回5
Math.random(); // 返回0~1之間的隨機數
// 字符串相關的String類中的方法
String str1 = "hello";
String str2 = "world";
str1.concat(str2); // 返回"helloworld"
str1.indexOf("l"); // 返回2
// IO流相關的File類中的方法
File file = new File("example.txt");
file.exists(); // 返回文件是否存在
file.mkdir(); // 創建目錄
file.createNewFile(); // 創建文件
// 集合類中的List和Map接口的方法
Listlist = new ArrayList<>();
list.add("apple");
list.add("banana");
System.out.println(list.get(0)); // 輸出"apple"
Mapmap = new HashMap<>();
map.put("name", "John");
map.put("age", "25");
System.out.println(map.get("name")); // 輸出"John"
以上這些類和方法只是Java開發中常用的部分,還有很多其他的類和方法需要在實際開發中不斷掌握和運用。