kukooBlog

          look to the master, follow the master, walk with the master, see through the master, become the master.

            BlogJava :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理 ::
            213 隨筆 :: 0 文章 :: 285 評論 :: 0 Trackbacks

          這是在eclipsepowered上看到的。 Ed提到了eclipse-dev committers mailing list中,Jerome Lanneluc 指出的一個String#substring和String(String)的問題。按照Jerome的說法,使用String#substring()的時候,原有的長字符串所占據的空間仍然被占據,并沒有釋放,使用String(String)可以解決這個問題。Jerome的原文:

          I just noticed that String#substring(…) shares the underlying char array. So if you have a big string, take a substring of it, throw away the big string, you will still hold on the big char array. A simple way to solve this is to make a copy of the substring using the String(String) constructor.

          I saved 550KB in JDT Core by changing the following code:

          String simpleName =
          fullyQualifiedName.substring(fullQualifiedName.lastIndexOf(
          '.'));

          to

          String simpleName = new
          String(fullyQualifiedName.substring(fullQualifiedName.lastIndexOf(
          '.'))); 

          Eclipse3.1發布以后,使用者發現,3.1占據了大量的Heap(大約200-300M)。Eclipse的開發小組正在不斷地解決這個問題,而String#substing的改進,將在Eclipse 3.1M6中發布(4月1日)。

          這個提示,其實也可以運用在我們自己的項目之中

          [Note: This blog was migrated from my old CSDN blog.]

          為什么重發這個blog呢?因為昨天看到Eclipse.org網站上關于Eclipse Performance的一個文檔。這份文檔主要是提示,在開發基于Eclipse的應用時(不管是Eclipse程序本身,還是Plug-in),在性能問題上需要注意的一些地方。其中,第一條就是如何使用substring()的問題。Eclipse 3.1M7以及RC1,都已經進行了這方面的調整,所以現在的Eclipse,對Heap的占用已經大幅減少,從而在性能上也有所提高。




          Eclipse.org
          eclipsepowered.org

          Email this store to a friend (send a short email with a subject to this story)
          Subscribe to kukooBlog (subscribe kukooBlog's RSS feed)
          Send me feedback on this story

          Yourit
          Mycat EclipseProgramming

          posted on 2005-06-03 09:04 kukooBlog 閱讀(826) 評論(0)  編輯  收藏 所屬分類: EclipseProgramming
          主站蜘蛛池模板: 牙克石市| 灵石县| 和林格尔县| 南乐县| 合川市| 安福县| 江北区| 建始县| 故城县| 新竹县| 绍兴市| 柘荣县| 永仁县| 龙陵县| 奉贤区| 赣榆县| 威海市| 武城县| 横峰县| 杭锦旗| 佳木斯市| 涿州市| 盘锦市| 五家渠市| 中西区| 隆子县| 瑞昌市| 交城县| 武汉市| 长子县| 景洪市| 济源市| 南木林县| 兴国县| 灌阳县| 揭阳市| 大理市| 黄龙县| 马公市| 铜川市| 海伦市|