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 Eclipse,Programming

          posted on 2005-06-03 09:04 kukooBlog 閱讀(826) 評論(0)  編輯  收藏 所屬分類: Eclipse 、Programming
          主站蜘蛛池模板: 阜城县| 抚远县| 宿州市| 大城县| 元朗区| 汉阴县| 毕节市| 鄂温| 崇仁县| 正镶白旗| 济阳县| 宜州市| 寻甸| 新闻| 伊通| 洛南县| 平塘县| 收藏| 亚东县| 台湾省| 剑川县| 长沙县| 禹州市| 台安县| 托里县| 钦州市| 六枝特区| 九龙县| 舟山市| 甘泉县| 九江市| 乌什县| 宜兴市| 荥经县| 西青区| 于都县| 宜州市| 湟中县| 大兴区| 兴隆县| 大同市|