需要完整代码,谢谢大家!需要Java的学生管理系统,具体的在下面的说明问题,有需要要求。按着要求来就行

kjciublfbsdBSB... kjciublfbsdBSB 展开
 我来答
doukou123
2019-03-25 · TA获得超过106个赞
知道答主
回答量:98
采纳率:50%
帮助的人:49.5万
展开全部
public class Course {

private String name;
private float score;

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public float getScore() {
return score;
}

public void setScore(float score) {
this.score = score;
}

public Course(String name, float score) {
this.name = name;
this.score = score;
}

public String toString() {
return this.name + ":" + this.score;
}
}

public class Student {

private long id;
private String name;
private int age;
private boolean sex;

public String toString() {

String sex = "女";
if (this.sex == true) {
sex = "男";
}
return String.format("姓名:%s,性别:%s,联系电话:%s,课程信息:%s,课程信息:%s", this.name, sex, this.phone, this.subject.toString());
}

public long getId() {
return id;
}

public void setId(long id) {
this.id = id;
}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public int getAge() {
return age;
}

public void setAge(int age) {
this.age = age;
}

public boolean isSex() {
return sex;
}

public void setSex(boolean sex) {
this.sex = sex;
}

public String getPhone() {
return phone;
}

public void setPhone(String phone) {
this.phone = phone;
}

public Course[] getSubject() {
return subject;
}

public void setSubject(Course[] subject) {
this.subject = subject;
}

private String phone;
private Course[] subject;

public Student(long i, String n, int a, boolean s, String p) {
this.id = i;
this.name = n;
this.age = a;
this.sex = s;
this.phone = p;
}

}

import java.util.ArrayList;

public class Cmanage {

private ArrayList<Student> students;

//插入
public void addStudent(Student student) {
students.add(student);
}

//删除
public void delStudent(Student student) {
students.remove(student);
}

//查询
public void queryStudent() {
System.out.printf("一共有%d个学生", students.size());
for (Student student : students) {
System.out.println(student.toString());
}
}

//修改
public void updateStudent(long i, String n, int a, boolean s, String p)
{
//以姓名做为唯一标识
for(int j=0;j<students.size();j++)
{
if (students.get(j).getName().equals(n))
{
students.get(j).setId(i);
students.get(j).setAge(a);
students.get(j).setSex(s);
students.get(j).setPhone(p);
}
}
}
}
匿名用户
2019-03-25
展开全部
淘,宝上发现个类似的. 用" 企业级系统样例 " 搜. 希望对你有帮助.
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友762f74c
2019-03-25 · 超过66用户采纳过TA的回答
知道小有建树答主
回答量:303
采纳率:52%
帮助的人:52.1万
展开全部
私聊我,可以帮你做
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
hiray
2019-03-25 · 知道合伙人互联网行家
hiray
知道合伙人互联网行家
采纳数:100 获赞数:215
中软国际最佳员工

向TA提问 私信TA
展开全部
这个,毕业论文还是啥?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友3102564
2019-03-25
知道答主
回答量:35
采纳率:0%
帮助的人:2.6万
展开全部
剧毒大喊大叫
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式