讓變化成為計劃的一部分

          歡迎大家探討本Blog涉及的所有軟件課題。我的Google Talk ID:zhengyun(at)gmail.com。

          我最希望軟件帶給用戶的感受是:美好的體驗、舒適感、簡約、干凈...

          posts - 32, comments - 8, trackbacks - 0, articles - 0
            BlogJava :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理
          不知道大家有否看過“反編譯的西伯利亞攻擊源代碼”的代碼,okay,不知道它的權威性有多大,不過西伯利亞攻擊這個游戲還是有名氣的,也許值得一看。
          它的主引擎就是聲明一個靜態的圖片數組:
          class MainEngine extends FullCanvas
              
          implements Runnable
          {
          。。。。
              
          static Image imgs[];
              
          public static void initImage() {
                
          if (!isLoadImg) {
                  
          if(imgs == null)
                      imgs 
          = new Image[GameData.imgName.length];
                  
          for (int i = 0; i < GameData.imgName.length - 1; i++{
                    
          if (imgs[i] == null{
                      
          try {
                        imgs[i] 
          = Image.createImage("/" + GameData.imgName[i]);
                      }

                      
          catch (Exception ex) {
                        System.out.println(
          "i:"+i);
                        ex.printStackTrace();
                      }

                    }

                    percent 
          = (i * 100/ (GameData.imgName.length - 1);
                    Sib.engine.flushGraphic();
                  }

                  isLoadImg 
          = true;
                }

              }

          而且我搜索了它的5個java文件,它在什么情況下調用System.gc()呢?
          下面三種情況:
          用戶返回游戲時(可能之前去接聽電話了?或者去設置里改參數了?);
          用戶選完飛機后,這可能是一個選項菜單,選飛機時所用到的資源可能以后在游戲中沒必要用,所以及時回收一下;
          顯示過關界面時,這時候有卡的現象,歡喜的用戶也不會在意的。

          除此之外就沒有了。

          Nokia 的文檔Known Issues In The Nokia 6600 MIDP 2.0 Implementation v1.7說:
          2.15.1 Garbage collecting
          Description
          Calling the System.gc() method results in extreme slowness and jamming. In Monty 1.0 VM, garbage
          collection is different and every time System.gc is called, the entire memory is really cleared.
          This is an extremely slow process!
          Solution
          Do not call the System.gc method at all, or call the System.gc() garbage collecting method only
          in non-time-critical situations, such as screen transitions, state transitions, pause states,
          etc. If the System.gc() method is used, it is recommended to add a short delay (~20-50 ms) after
          the method call to ensure the sufficient time for the garbage collection, as in the following

          example
          System.gc();
          Thread.sleep(delay); delay = 20-50 ms


          評論

          # re: 什么時候在游戲中調用System.gc()?[javaME]  回復  更多評論   

          2008-03-21 22:15 by univasity
          謝謝分享,不錯的建議。
          主站蜘蛛池模板: 朝阳区| 辰溪县| 临漳县| 昌图县| 江山市| 浪卡子县| 大关县| 永顺县| 齐齐哈尔市| 秀山| 德钦县| 衡阳县| 玉门市| 黄龙县| 嘉善县| 乐山市| 阿克苏市| 海南省| 泗阳县| 岐山县| 延津县| 禄劝| 太湖县| 蓬安县| 观塘区| 惠安县| 永平县| 安新县| 怀柔区| 古田县| 沅陵县| 洪雅县| 龙里县| 洛隆县| 临潭县| 博乐市| 渭源县| 阳江市| 龙里县| 永丰县| 长宁区|