温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Java实现校园注册登录系统代码

发布时间:2020-06-01 14:19:26 来源:亿速云 阅读:280 作者:Leah 栏目:编程语言

本文分享的是Java实现校园注册登录系统的代码,为大家分析用Java实现校园注册登录系统的具体实现。阅读完整文相信大家都能学会用java设计自己的系统。

代码展示:
package com.entity;

public class Teacher {
private int id;
private String name;
private String sex;
private int age;
public Teacher(){
super();
}
public Teacher(int id, String name) {
super();
this.id = id;
this.name = name;
}
public Teacher(int id, String name, String sex, int age) {
super();
this.id = id;
this.name = name;
this.sex = sex;
this.age = age;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getSex() {
return sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public String toString() {
return "教师 工号:" + id + " 姓名:" + name + " 性别:" + sex

  • " 年龄:" + age;
    }
    public int hashCode() {
    return id;
    }
    public boolean equals(Object obj) {
    if (this == obj)
    return true;
    if (obj == null)
    return false;
    if(obj instanceof Teacher){
    Teacher other=(Teacher)obj;
    return id==other.id&&name.equals(other.name);
    }
    return false;
    }

}
看完这篇文章,你们学会用Java实现校园注册登录系统代码的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注亿速云行业资讯频道,感谢各位的阅读!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI