GC笔记 webcast

代的概念,有三代,0,1,2

 

 

  1. G0 大小为512K 动态调整
  2. G1 大小为2M    动态调整
  3. G2 大小为10M  动态调整


 

 

  • G0 小对象(Size<85,000)
  • G1 在GC中型材下来的G0对象 
  • G2 大对象(Size>85000) 或者是在GC中幸存的G1对象

            Console.WriteLine(GC.MaxGeneration);
            
            SmallClass smallClass = new SmallClass();
            Console.WriteLine(GC.GetGeneration(smallClass));
            GC.Collect();

            Console.WriteLine(GC.GetGeneration(smallClass));
            GC.Collect();


            Console.WriteLine(GC.GetGeneration(smallClass));
            GC.Collect();
 
 
   public class SmallClass
    {
        int i, j, k;
    }
 
 
    public class BigClass
    {
        int[] ints = new int[24000];
    }
 
 
     BigClass bigClass = new BigClass();
     Console.WriteLine(GC.GetGeneration(bigClass));

 
 标记: 找出所以引用不为0的实体,
  
 方法: 找到所有GC的根节点(GC Root),将他们放到队列里,然后依次递归遍历所有的根节点以
           及引用的所有子节点     和子子节点,将所有遍历到的节点标记为live。弱引用不考虑在内。==》 Tree

 GC Root:
      全局变量,静态变量,栈上的所有局部变量(JIT)栈上传入的参数变量,寄存器中的变量


 

你可能感兴趣的:(html,Blog,J#)