資源簡介
Java實現(xiàn)學(xué)生管理系統(tǒng),代碼注釋,增刪改查功能詳細(xì)的應(yīng)用!

代碼片段和文件信息
package?com.student.bll;
/*業(yè)務(wù)邏輯;
?*?對象:一種是看得見摸得著的,另一種是意識形態(tài)的對象
?*?*/
//實體類:主要拿來存儲數(shù)據(jù)
public?class?Student?{
//?定義屬性-成員變量
private?String?no;//?學(xué)號
private?String?name;
private?int?age;
private?float?score;
//?構(gòu)造方法
public?Student()?{
}
public?Student(String?no?String?name?int?age?float?score)?{
this.no?=?no;
this.name?=?name;
this.age?=?age;
this.score?=?score;
}
//?定義動態(tài)的行為-方法
public?void?setNo(String?no)?{
this.no?=?no;
}
public?String?getNo()?{
return?no;
}
public?int?getAge()?{
return?age;
}
public?void?setAge(int?age)?{
this.age?=?age;
}
public?float?getScore()?{
return?score;
}
public?void?setScore(float?score)?{
this.score?=?score;
}
public?String?getName()?{
return?name;
}
public?void?setName(String?name)?{
this.name?=?name;
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????301??2016-09-20?11:38??學(xué)生信息管理系統(tǒng)\.classpath
?????文件????????390??2016-09-20?11:38??學(xué)生信息管理系統(tǒng)\.project
?????文件????????598??2016-09-20?11:38??學(xué)生信息管理系統(tǒng)\.settings\org.eclipse.jdt.core.prefs
?????文件???????1102??2016-09-27?11:19??學(xué)生信息管理系統(tǒng)\bin\com\student\bll\Student.class
?????文件???????1509??2016-09-27?12:01??學(xué)生信息管理系統(tǒng)\bin\com\student\bll\StudentManager.class
?????文件????????913??2016-09-27?11:19??學(xué)生信息管理系統(tǒng)\src\com\student\bll\Student.java
?????文件???????1207??2016-09-27?12:01??學(xué)生信息管理系統(tǒng)\src\com\student\bll\StudentManager.java
?????目錄??????????0??2016-09-28?10:27??學(xué)生信息管理系統(tǒng)\bin\com\student\bll
?????目錄??????????0??2016-09-27?10:18??學(xué)生信息管理系統(tǒng)\bin\com\student\ui
?????目錄??????????0??2016-09-28?10:27??學(xué)生信息管理系統(tǒng)\src\com\student\bll
?????目錄??????????0??2016-09-27?10:18??學(xué)生信息管理系統(tǒng)\src\com\student\ui
?????目錄??????????0??2016-09-28?10:27??學(xué)生信息管理系統(tǒng)\bin\com\student
?????目錄??????????0??2016-09-28?10:27??學(xué)生信息管理系統(tǒng)\src\com\student
?????目錄??????????0??2016-09-28?10:27??學(xué)生信息管理系統(tǒng)\bin\com
?????目錄??????????0??2016-09-28?10:27??學(xué)生信息管理系統(tǒng)\src\com
?????目錄??????????0??2016-09-28?10:27??學(xué)生信息管理系統(tǒng)\.settings
?????目錄??????????0??2016-09-28?10:27??學(xué)生信息管理系統(tǒng)\bin
?????目錄??????????0??2016-09-28?10:27??學(xué)生信息管理系統(tǒng)\src
?????目錄??????????0??2016-09-28?10:27??學(xué)生信息管理系統(tǒng)
?????文件????????232??2017-11-17?19:35??student\.classpath
?????文件????????383??2017-11-17?19:35??student\.project
?????文件???????1292??2018-10-10?13:07??student\bin\com\student\bll\Student.class
?????文件???????2460??2018-10-10?13:07??student\bin\com\student\bll\StudentManager.class
?????文件???????3623??2018-10-10?13:07??student\bin\com\student\ui\Client.class
?????文件????????932??2017-11-18?14:08??student\src\com\student\bll\Student.java
?????文件???????2254??2017-11-23?22:38??student\src\com\student\bll\StudentManager.java
?????文件???????2140??2017-11-23?22:53??student\src\com\student\ui\Client.java
?????目錄??????????0??2018-10-10?13:07??student\bin\com\student\bll
?????目錄??????????0??2018-10-10?13:07??student\bin\com\student\ui
?????目錄??????????0??2018-09-20?00:55??student\src\com\student\bll
............此處省略11個文件信息
評論
共有 條評論