Home>Article>Java> How to understand the concepts of heap and stack in java

How to understand the concepts of heap and stack in java

王林
王林 Original
2020-06-02 09:25:02 3314browse

How to understand the concepts of heap and stack in java

First of all, let’s take a brief look at the heap and stack:

1. Heap and stack are two data structures. Data items can only be inserted and deleted at one end. .

2. In microcontroller applications, the stack is a special storage area, mainly used to temporarily store data and addresses.

3. Heap, queue priority, first in first out.

4. Stack, first in, last out.

(Video tutorial recommendation:java video)

Comparison of heap and stack:

1. Both stack and heap It is where java stores data in memory.

2. Java automatically manages the stack, and programmers do not need to worry about it (unlike C).

3. Stack, the storage speed is faster than the heap, second only to the registers in the CPU. The disadvantage is that the size and life cycle are deterministic and lack flexibility.

4. Stack data cannot be shared between multiple threads or multiple stacks

5. Multiple variables with equal values inside the stack can point to the same address.

6. The advantage of the heap is that it can dynamically distribute the memory size, and the life cycle is also dynamic.

7. The Java garbage collector will automatically collect heap data that is no longer in use.

8. The disadvantage of the heap is that memory must be dynamically allocated at runtime, and the access speed is slow.

Recommended tutorial:java entry program

The above is the detailed content of How to understand the concepts of heap and stack in java. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn