Java是一门广泛应用于企业级开发的编程语言,它有许多常用代码,以下是一些常见的Java代码示例:
- Hello World
public class HelloWorld { public static void main(String[] args) { System.out.println("Hello World!"); } }
- 创建一个列表
List<String> list = new ArrayList<>(); list.add("Java"); list.add("Python"); list.add("C++");
- 遍历列表元素
for (String language : list) { System.out.println(language); }
- 创建一个Map
Map<String, Integer> map = new HashMap<>(); map.put("Java", 1); map.put("Python", 2); map.put("C++", 3);
- 遍历Map元素
for (Map.Entry<String, Integer> entry : map.entrySet()) { System.out.println(entry.getKey() + ": " + entry.getValue()); }
- 创建一个线程
Thread thread = new Thread(new Runnable() { @Override public void run() { // 执行代码 } }); thread.start();
- 创建一个文件并写入数据
File file = new File("test.txt"); try (FileWriter writer = new FileWriter(file)) { writer.write("Hello World!"); } catch (IOException e) { e.printStackTrace(); }
- 读取文件数据
try (BufferedReader reader = new BufferedReader(new FileReader("test.txt"))) { String line = null; while ((line = reader.readLine()) != null) { System.out.println(line); } } catch (IOException e) { e.printStackTrace(); }
这些是Java中一些常用的代码示例,可以帮助开发人员快速实现一些基本功能。在实际开发中,还有许多其他常用代码和技巧,需要根据具体的开发需求和场景进行选择和应用。
评论