search
HomeJavaJavagetting Startedjava object-oriented - encapsulation
java object-oriented - encapsulationNov 28, 2019 pm 02:12 PM
javaencapsulationobject-oriented

java object-oriented - encapsulation

Overview

Object-oriented programming language is a simulation of the objective world. In the objective world, member variables are hidden inside the object. It cannot be directly manipulated or modified. Encapsulation can be thought of as a protective barrier that prevents the code and data of the class from being freely accessed by other classes. To access the data of this class, you must use the specified method.

Appropriate encapsulation can make the code easier to understand and maintain, and also enhance the security of the code.

Principle

Hide the properties. If you need to access a property, provide public methods to access it.

Encapsulation steps

Use the private keyword to modify member variables.

For member variables that need to be accessed, a corresponding pair of getXxx methods and setXxx methods are provided.

Java learning video recommendation: java online tutorial

Encapsulated operation—private keyword

Meaning of private:

Private is a permission modifier, which represents the minimum permission. It can modify member variables and member methods. Member variables and member methods modified by private can only be accessed in this class.

Usage format of private

private 数据类型 变量名 ;

Use private to modify member variables, the code is as follows:

java object-oriented - encapsulation

Provide getXxx method / setXxx method, you can access member variables, the code is as follows:

java object-oriented - encapsulation

Encapsulation optimization 1——this keyword

We found that the name of the formal parameter in the setXxx method does not comply with the provisions of knowing the meaning by seeing the name. So if the modification is consistent with the name of the member variable, will it be known by the name? The code is as follows:

java object-oriented - encapsulation

#After modification and testing, we found a new problem, the member variable assignment failed. In other words, after modifying the formal parameter variable name of setXxx(), the method does not assign a value to the member variable! This is because the formal parameter variable name has the same name as the member variable name, causing the member variable name to be hidden. The variable name in the method cannot access the member variable, so the assignment fails. Therefore, we can only use the this keyword to solve this duplicate name problem.

The meaning of this

this represents the reference (address value) of the current object of the class, that is, the reference of the object itself.

Remember: which object the method is called on, this in the method represents that object. That is, whoever is calling, this represents.

this usage format:

this.成员变量名;
public class Student {  
	private String name;  
	private int age;
	public void setName(String name) {
		//name = name;  
		this.name = name;
	}
	public String getName() {  
		return name;
	}
	public void setAge(int age) {
		//age = age; 
		this.age = age;
	}
	public int getAge() {  
		return age;
	}
}

Tip: When there is only one variable name in the method, this is also modified by default, which can be omitted.

Encapsulation Optimization 2 - Construction Method

When an object is created, the construction method is used to initialize the object and assign initial values ​​to the member variables of the object. value.

Tip: Regardless of whether you customize the constructor or not, all classes have constructors, because Java automatically provides a parameterless constructor. Once you define a constructor, Java automatically provides The default no-parameter constructor will fail.

The definition format of the constructor method:

java object-oriented - encapsulation

In the way of writing the constructor method, the method name and its location The class names are the same. It has no return value, so no return type is needed, not even void. After using the constructor, the code is as follows:

java object-oriented - encapsulation

Note:

If you do not provide a constructor, the system will give Parameter construction method.

If you provide a constructor, the system will no longer provide a parameterless constructor.

Constructor methods can be overloaded, and parameters can be defined or not.

标准代码——JavaBean

JavaBean 是 Java语言编写类的一种标准规范。符合 JavaBean 的类,要求类必须是具体的和公共的,并且具有无 参数的构造方法,提供用来操作成员变量的 set 和 get 方法。

java object-oriented - encapsulation

编写符合 JavaBean 规范的类,以学生类为例,标准代码如下:

java object-oriented - encapsulation

测试类,代码如下:

public class TestStudent {
	public static void main(String[] args) {
		//无参构造使用
		Student s= new Student();  
		s.setName(" 柳 岩 "); 
		s.setAge(18);
		System.out.println(s.getName()+"‐‐‐"+s.getAge());
		//带参构造使用
		Student s2= new Student(" 赵 丽 颖 ",18);  
		System.out.println(s2.getName()+"‐‐‐"+s2.getAge());
	}
}

推荐相关文章教程:java语言入门

The above is the detailed content of java object-oriented - encapsulation. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:CSDN. If there is any infringement, please contact admin@php.cn delete
带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

Java数据结构之AVL树详解Java数据结构之AVL树详解Jun 01, 2022 am 11:39 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment