Skip to content

Commit

Permalink
Update JavaConcurrencyBasicsCommonInterviewQuestionsSummary.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Snailclimb committed Apr 22, 2020
1 parent 2abe60c commit 41ab5af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public class MultiThread {

### 2.4. 一句话简单了解堆和方法区

堆和方法区是所有线程共享的资源,其中堆是进程中最大的一块内存,主要用于存放新创建的对象 (所有对象都在这里分配内存),方法区主要用于存放已被加载的类信息、常量、静态变量、即时编译器编译后的代码等数据。
堆和方法区是所有线程共享的资源,其中堆是进程中最大的一块内存,主要用于存放新创建的对象 (几乎所有对象都在这里分配内存),方法区主要用于存放已被加载的类信息、常量、静态变量、即时编译器编译后的代码等数据。

## 3. 说说并发与并行的区别?

Expand Down

0 comments on commit 41ab5af

Please sign in to comment.