address.java

来自「最近刚刚学习的一个struts方面的小程序」· Java 代码 · 共 25 行

JAVA
25
字号
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 + =
减小字号Ctrl + -
显示快捷键?