java中encapsulation_Encapsulation in Java 胶囊

ABOUT

Encapsulation is defined as the wrapping up of data under a single unit. It is the mechanism that binds together code and the data it manipulates.Other way to think about encapsulation is, it is a protective shield that prevents the data from being accessed by the code outside this shield.

Technically in encapsulation, the variables or data of a class is hidden from any other class and can be accessed only through any member function of own class in which they are declared.

As in encapsulation, the data in a class is hidden from other classes, so it is also known as data-hiding.

Encapsulation can be achieved by: Declaring all the variables in the class as private and writing public methods in the class to set and get the values of variables.

b0f868742297

Encapsulation.png

Advantages of Encapsulation:

Data Hiding: The user will have no idea about the inner implementation of the class. It will not be visible to the user that how the class is storing values in the variables. He only knows that we are passing the values to a setter method and variables are getting initialized with that value. 数据绑定,黑箱/胶囊理论。

Increased Flexibility: We can make the variables of the class as read-only or write-only depending on our requirement. If we wish to make the variables as read-only then we have to omit the setter methods like setName(), setAge() etc. from the above program or if we wish to make the variables as write-only then we have to omit the get methods like getName(), getAge() etc. from the above program. 控制数据的读写权限。

Reusability: Encapsulation also improves the re-usability and easy to change with new requirements.

Testing code is easy: Encapsulated code is easy to test for unit testing. 提高代码可用性,参照java面向对象的编程思想OOP。

code sample

// Java program to demonstrate encapsulation

public class Encapsulate

{

// private variables declared

// these can only be accessed by

// public methods of class

private String geekName;

private int geekRoll;

private int geekAge;

// get method for age to access

// private variable geekAge

public int getAge()

{

return geekAge;

}

// get method for name to access

// private variable geekName

public String getName()

{

return geekName;

}

// get method for roll to access

// private variable geekRoll

public int getRoll()

{

return geekRoll;

}

// set method for age to access

// private variable geekage

public void setAge( int newAge)

{

geekAge = newAge;

}

// set method for name to access

// private variable geekName

public void setName(String newName)

{

geekName = newName;

}

// set method for roll to access

// private variable geekRoll

public void setRoll( int newRoll)

{

geekRoll = newRoll;

}

}

作者 @FL

2019 年 04月 24日

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值