📄 address.java
字号:
package test;
import java.io.*;
public class Address implements Serializable
{
private String country;
private String city;
private String street;
public Address(String country,String city,String street){
this.country = country;
this.city = city;
this.street = street;
}
public String getCountry(){
return country;
}
public String getCity(){
return city;
}
public String getStreet(){
return street;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -