程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> J2ME >> 解讀java.lang.MIDlet

解讀java.lang.MIDlet

編輯:J2ME
public abstract class MIDlet {    private MIDletProxy state;    MIDletProxy getProxy() {        return state;    }     protected MIDlet() {        state = new MIDletProxy(this);    }     protected abstract void startApp() throws MIDletStateChangeException;     protected abstract void pauseApp();     protected abstract void destroyApp(boolean unconditional) throws MIDletStateChangeException;  public final void notifyDestroyed() {        state.notifyDestroyed();    }     public final void notifyPaused() {        state.notifyPaused();    }     public final String getAppProperty(String key) {        return state.getMIDletSuite().getProperty(key);    }     public final void resumeRequest() {        state.resumeRequest();    }     public
    final boolean platformRequest(String URL) throws Javax.microedition. io.ConnectionNotFoundException { return state.platformRequest(URL); }  public final int checkPermission(String permission) { return state.checkPermission(permission); }}

----------------------------

可以看到這些把持都是通過委托類來實現的.MIDletProxy. 
所以要害關注MIDletProxy.

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved