Encapsulation is to hide the object’s information inside the object and prohibit external programs from directly accessing the properties and methods inside the object.
1. Basic types can only be passed by value, and the encapsulation class corresponding to each basic type is passed by reference.
2. In terms of performance, basic types in Java are created on the stack, and all object types are created on the heap (references to objects are created on the stack). For example, Integer i=new Integer(10); where new Integer() is created on the heap, and its reference Integer i is on the stack. The emergence of encapsulated classes is to make it more convenient to use some methods that are not available in basic types, such as valueOf(), toString(), etc. Also, if you want to pass a reference to an int object instead of a value, you can only use a wrapper class.
The calling efficiency of allocating memory on the stack is much different from that of allocating memory on the heap. Although allocating memory on the stack is efficient, allocating memory on the stack has the problem of memory leaks. (This is a problem that mediocre programmers basically cannot solve...) Java uses a very genius method to improve the efficiency of allocating memory on the heap. Despite this, Java is still slow. It's unlikely that he'll be as fast as C, although he's been promising that one day virtual machines will be as fast as machine code.
JDK5.0 can automatically package, that is, basic data can be automatically packaged into encapsulated classes. The advantage of basic data types is that they are fast (it does not involve the construction and recycling of objects). The purpose of encapsulated classes is mainly to be better There are many methods for processing data conversion, and they are easy to use.
Of course, the transfer of encapsulated types is by reference. For example,
Integer a = new Integer(1);
means that an Integer type reference a refers to a piece of memory, and the data in this memory is 1; and what is stored in a is this The reference (address) of block memory. When passing a to other methods or objects, the reference of a is passed.
Conversion between types:
String b = "123456"; int c = Integer.parseInt(b);
means converting the string 123456 into an integer number, where parseInt is a static method and can be used directly
Another point is that in some cases, it is necessary to use When it comes to encapsulated classes, such as a collection List, it can only add objects to it, that is, Object, so directly storing numbers is definitely not possible. You need to encapsulate the numbers into encapsulated type objects and then store them in the List, such as
List list = new ArrayList(); list.add(new Integer(1)); list.add(new Integer(2)); list.add(new Integer(3)); list.add(new Integer(4));
JDK5.0 can automatically seal packets in the future, so it can be abbreviated as
List list = new ArrayList(); list.add(1); list.add(2); list.add(3); list.add(4);
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!
Recommended reading:
JavaScript to obtain the city and geographical location of the user
The relationship between JavaScript calling mode and this keyword binding
The relationship between JavaScript calling mode and this keyword binding
The above is the detailed content of Implementation steps of encapsulation in java. For more information, please follow other related articles on the PHP Chinese website!

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

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

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

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

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

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

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

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


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 Chinese version
Chinese version, very easy to use

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver CS6
Visual web development tools
