3

本文介绍了Java中封装的概念及其应用,通过具体实例展示了如何使用private关键字隐藏类的内部实现,并通过getter和setter方法对外提供访问接口。
封装
    1.隐藏类内部实现细节(封装)

    2.步骤:
                a.将属性私有化(private)
         b.提供getter/setter 方法(getXxx(),setXxx())
         c.在getter/setter中加入控制语句
    3.this 关键词:
        this:表示当前对象
        调用属性:this.属性名
        调用方法:this.方法名();
        this():表示调用构造函数。
        注意:this();必需写在构造函数的第一行。       

 

public class Excelle {
    private String type;
    private String id;
    public Excelle(){
        
    }
    public Excelle(String id,String type){
        this.type=type;
        this.id=id;
    }
    public String getType(){
        return type;
    }
    public String getId(){
        return id;
    }
}
View Code
public class Regal {
    private String type;
    private String id;
    public Regal(){
        
    }
    public Regal(String id,String type){
        this.type=type;
        this.id=id;
    }
    public String getType(){
        return type;
    }
    public String getId(){
        return id;
    }
}
View Code

 

转载于:https://www.cnblogs.com/wojiatingting/p/7015652.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值