小秋的家

home

  BlogJava :: 首页 :: 联系 :: 聚合  :: 管理
  1 Posts :: 91 Stories :: 17 Comments :: 0 Trackbacks
public   class   T 
{   
    public   static   void   main(String[]   args)   throws   Exception   
   
        //   创建   1000   个   String   
        String   strA[]   =   new   String[1000];   
        long   start   =   0;   
        long   end   =   0;  
        //   先垃圾回收
        System.gc();   
        start   =   Runtime.getRuntime().freeMemory();   
        for   (int   i   =   0;   i   <   1000;   i   ++)   
        strA[i]   =   new   String();   
         //   快要计算的时,再清理一次   
        System.gc();   
        end   =   Runtime.getRuntime().freeMemory();   
        System.out.println("一个String对象占内存:"   +   (start   -   end)/1000.0);   
    } 
}
    

        
posted on 2008-09-02 10:27 棋剑小秋 阅读(231) 评论(0)  编辑  收藏 所属分类: JAVA

只有注册用户登录后才能发表评论。


网站导航: