⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 address.java

📁 最近刚刚学习的一个struts方面的小程序
💻 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 + -