java學習筆記_內存分析

  程序執行時內存一般被分爲4部分 代碼區(code segment):存放代碼 數據區(data segment):靜態變量和字符串常量 棧(stack): 存放局部變量 堆(heap):動態生成內存(new出來的東西)   代碼如下: public class Person{ int id; int age; Person(int _id,int _age
相關文章
相關標籤/搜索