Home > Java > JavaBase > body text

How to understand the concept of process in java

王林
Release: 2019-11-15 16:44:11
Original
3010 people have browsed it

How to understand the concept of process in java

The concept of process

A process is the basis of the operating system structure; it is a program that is being executed; an instance of the program that is running in the computer; An entity that can be assigned to and executed by a processor; a unit of activity described by a single sequence of executions, a current state, and a set of associated system resources.

1. A process is an entity

Each process has its own address space, which generally includes text region, data region and stack ( stack region).

The text area stores the code executed by the processor; the data area stores variables and dynamically allocated memory used during process execution; the stack area stores instructions and local variables for active procedure calls.

2. A process is an "executing program"

A program is an inanimate entity. Only when the processor gives life to the program can it become an active entity. We call it for the process.

Characteristics of process

Dynamicity: The essence of a process is an execution process of a program in a multi-programming system. The process is dynamically generated and dies dynamically.

Concurrency: Any process can execute concurrently with other processes.

Independence: A process is a basic unit that can run independently, and it is also an independent unit for resource allocation and scheduling by the system.

Asynchronicity: Due to the mutual constraints between processes, the process has intermittent execution, that is, the processes advance at independent and unpredictable speeds.

Structural features: The process consists of three parts: program, data and process control block.

Multiple different processes can contain the same program: a program constitutes different processes in different data sets and can obtain different results; but during execution, the program cannot change.

Recommended tutorial: Java tutorial

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!