Java提供了有力的工具和語言來幫助我們創(chuàng)建學(xué)生姓名和成績的系統(tǒng)。以下是如何使用Java創(chuàng)建一個簡單的學(xué)生信息管理系統(tǒng)的步驟:
public class Student { String name; int score; public Student(String name, int score) { this.name = name; this.score = score; } public String getName() { return name; } public int getScore() { return score; } public String toString() { return name + ": " + score; } }
創(chuàng)建一個名為Student的類,其中包含學(xué)生姓名和成績。在類中定義一個構(gòu)造函數(shù),以便我們可以使用學(xué)生姓名和分?jǐn)?shù)創(chuàng)建學(xué)生對象。
import java.util.ArrayList; import java.util.List; public class Main { public static void main(String[] args) { Liststudents = new ArrayList<>(); students.add(new Student("Tom", 85)); students.add(new Student("Jane", 92)); students.add(new Student("Jack", 76)); students.add(new Student("Lucy", 90)); for (Student student : students) { System.out.println(student.toString()); } } }
在主函數(shù)中,我們創(chuàng)建一個學(xué)生列表并添加學(xué)生信息。然后,我們使用for-each循環(huán)遍歷列表并打印每個學(xué)生的姓名和成績。
上述代碼是如何使用Java創(chuàng)建一個簡單的學(xué)生信息管理系統(tǒng)的完整過程。