📄 address.java
字号:
package com.ghy.test8;
import java.io.Serializable;
public class Address implements Serializable {
private String home ;
private String code ;
private Student student ;
public Address(String home, String code, Student student) {
super();
this.home = home;
this.code = code;
this.student = student;
}
public Address() {
super();
// TODO Auto-generated constructor stub
}
/**
* @return the home
*/
public String getHome() {
return home;
}
/**
* @param home the home to set
*/
public void setHome(String home) {
this.home = home;
}
/**
* @return the code
*/
public String getCode() {
return code;
}
/**
* @param code the code to set
*/
public void setCode(String code) {
this.code = code;
}
/**
* @return the student
*/
public Student getStudent() {
return student;
}
/**
* @param student the student to set
*/
public void setStudent(Student student) {
this.student = student;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -