- package bbs.istak.org.tw;
- public class Main {
- public static void main(String[] args) {
- // TODO 自動產生的方法 Stub
- Student stu = new Student("plan",100000);
- stu.getstudent();
- }
- }
複製代碼- package bbs.istak.org.tw;
- public class Student {
- public String name;
- public int score;
- public Student(String name,int score)
- {
- this.name = name;
- this.score = score;
- }
- public void getstudent()
- {
- System.out.println("I'm student "+this.name+".My score is"+this.score);
- }
- }
複製代碼 |