1024programmer Java May I ask, how to use getter() and setter() in java? Please give a simple example, thank you!

May I ask, how to use getter() and setter() in java? Please give a simple example, thank you!

Excuse me, how to use getter() and setter() in java? Please give a simple example, thank you!

The get set method is mainly used to control access rights. Generally, the attributes in the class are set to private and cannot be directly accessed from outside the class. 1. When it needs to be read, it is obtained through the get method. 2. When it needs to be modified. It is safer to set the program through the set method. For example, class Cat{ private String color; public Cat(String color){ this.color = color; }public String getColor(){ return this.color; }} In this example, it is a cat class, and its color is the same as It is something you are born with and generally cannot be changed.

So set its color in the constructor. After a Cat object is created, you can only get its color, but not set it.

How to use the setter method to set the array after java encapsulates it with privata

Your error is x<this.emps[].length in the for statement
This.emps[] refers to a member variable, but the member variable emps has not been assigned a value and is still a null reference. How can you .length?
Remove this. Also, emps in your code is written as emp.

Your mistakes are all caused by careless writing or misuse of this.

There is no need to assign arrays like this. Just assign the parameters directly to the member variable emps.

About the usage of getters and setters in Java

Setters and getters are used for encapsulation. Generally, we will make class variables private, so that only the class members themselves can be directly accessed. This variable cannot be accessed directly from the outside, so getters and setters constitute the means of accessing these variables from outside the class members. Because the getter and setter methods are public and can be accessed from outside the class members, we can use the getter when we need to obtain the value of the length, and the setter when we want to change the value.

Int len ​​in the set method is the parameter required by the method.

When calling the method, you must write an int type value or variable in the brackets of setLength(), otherwise the compilation will report an error. The function is to set the length of this object to the value of the int inside the brackets.

What are the functions of java getters and setters?

1. Getter
1. Return formatted data according to customer expectations.
2. Control the order of services (for example, the getter method returns the corresponding instance only when the connection is established).

2. setter
1. You can limit and check the parameters passed in by the setter method.

2. Hide the internal data structure of the object.
3. Maintain the integrity of the object in each state.
The setter method is used to set the value of the variable, and then the getter method is used to call the value of the variable.
When setter is used to change the value of a data member, the operation must be triggered by the object itself. When public is used to change the value of a data member, the operation can be triggered by any object. This is an object-oriented encapsulation. In short, it is its own data member, only It is visible to you, and only you can change its value.

Extended information
Benefits of using getters and setters in java:
1. Achieve professional division of labor. After encapsulating the code that can implement a specific function into an independent entity, each programmer can call it when needed, thus realizing professional division of labor.
2. Hide information and implement details.

By controlling access rights, you can hide information that you do not want client programmers to see. For example, if a customer’s bank password needs to be kept secret, you can only develop permissions for that customer.
3. Users do not need to know the implementation details of the internal methods of the object, but can access the object according to the external interface (object name and parameters) provided by the object.

How to design entity classes in JAVA?

Entity classes only need to contain attributes and methods, such as public class demo{ private int age; private String name;}.

How to automatically generate getters and setters in myeclipse

Method: Create a java file with name, pass, money and age attributes. Press the shortcut key shift+alt+s to pop up a dialog box , select the generate Getter and Setter option, or next step, right-click the mouse, select source from the pop-up menu, and then select Generate Getter And Setter from the secondary menu. After clicking, a dialog box will be displayed, click select All, select Access modify and click public ok, the getter and setter methods have been edited.

This article is from the internet and does not represent1024programmerPosition, please indicate the source when reprinting:https://www.1024programmer.com/may-i-ask-how-to-use-getter-and-setter-in-java-please-give-a-simple-example-thank-you/

author: admin

Previous article
Next article

Leave a Reply

Your email address will not be published. Required fields are marked *

Contact Us

Contact us

181-3619-1160

Online consultation: QQ交谈

E-mail: 34331943@QQ.com

Working hours: Monday to Friday, 9:00-17:30, holidays off

Follow wechat
Scan wechat and follow us

Scan wechat and follow us

Follow Weibo
Back to top
首页
微信
电话
搜索