一个简单java类的编写以及注意事项

1.类的名称要有意义

2.类中属性必须用private封装,必须有setter和getter方法

3.可以有多个构造方法,但必须包含无参数的构造方法

4.类中不允许有输出语句,所有内容获取必须必须返回

package asrfasf; //打包

class Address{    //简单Java类
	private String country;
	private String province;
	private String city;
	private String street;
	private String post;
	public Address(){}//无参数的构造函数
	public Address(String country,String province,String city,String street,String post){
		this.country=country;
		this.province=province;
		this.city=city;
		this.street=street;
		this.post=post;
	} 
	public void setCountry(String country){
		this.country=country;
	}
	public void setProvince(String province){
		this.province=province;
	}
	public void setCity(String city){
		this.city=city;
	}
	public void setStreet(String street){
		this.street=street;
	}
	public void setPost(String post){
		this.post=post;
	}
	public String getCountry(){
		return this.country;
	}
	public String getProvince(){
		return this.province;
	}
	public String getCity(){
		return this.city;
	}
	public String getStreet(){
		return this.street;
	}
	public String getPost(){
		return this.post;
	}
	public String getInfo(){    //返回数据
	return "国家:"+this.country+",省份:"+this.province+",城市:"+
				this.city+",街道:"+this.street+", 邮编:"+this.post;
    }
 }
public class Demo{ 
//Java程序入口
	public static void main(String[] args) {
		Address emp=new Address("中国","河北","石家庄","市里","000000");
		System.out.println(emp.getInfo());
	} 
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

爱学习的man

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值