After opening the browser

Insert picture description here

  • RAM:
    • Everything runs in memory
  • process:
    • Once the program is executed, it occupies a unique memory space
    • You can view the process through the windows task manager
  • Thread:
    • Is an independent execution unit within the process
    • Is a complete process of program execution
    • It is the smallest scheduling unit of the CPU
  • relationship
    • A process has at least one thread (main)
    • The program is executed in a thread in a process

Guess you like

Origin blog.csdn.net/JankoY/article/details/112799160