|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
再举这样一个例子:如果你想对一个数字取绝对值,你会怎么做呢?java的做法是intc=Math.abs(-166);而ruby的做法是:c=-166.abs。呵呵,这就看出了java与ruby的区别。对照固然利用面向对象的头脑举行J2ME的编程,会增添代码量(增添公布文件的巨细)和进步代码的庞大性。可是为了代码的可保护性和可扩大性,如今尽年夜多半的程序仍是将界面和逻辑分别开来,上面先申明一下怎样将MIDlet主类和界面分别。
在界面和MIDlet中,必要互换的体系内容次要有两部分:1、Display对象;2、MIDlet中的加入处置。
示例代码以下:
packagetestmidlet;
importjavax.microedition.midlet.*;
importjavax.microedition.lcdui.*;
publicclassTestMIDletextendsMIDlet{
privatestaticTestMIDletinstance;
privateLoginFormdisplayable=newLoginForm();
/**Constructor*/
publicTestMIDlet(){
instance=this;
}
/**Mainmethod*/
publicvoidstartApp(){
Display.getDisplay(this).setCurrent(displayable);
}
/**HandlepausingtheMIDlet*/
publicvoidpauseApp(){
}
/**HandledestroyingtheMIDlet*/
publicvoiddestroyApp(booleanunconditional){
}
/**QuittheMIDlet*/
publicstaticvoidquitApp(){
instance.destroyApp(true);
instance.notifyDestroyed();
instance=null;
}
}
packagetestmidlet;
importjavax.microedition.lcdui.*;
publicclassLoginFormextendsFormimplementsCommandListener{
privateDisplaydisplay;
/**Constructor*/
publicLoginForm(Displaydisplay){
super("Test");
this.display=display;
setCommandListener(this);
//addtheExitcommand
addCommand(newCommand("Exit",Command.EXIT,1));
}
/**Handlecommandevents*/
publicvoidcommandAction(Commandcommand,Displayabledisplayable){
/**@todoAddcommandhandlingcode*/
if(command.getCommandType()==Command.EXIT){
//stoptheMIDlet
TestMIDlet.quitApp();
}
}
}
个中display对象能够经由过程机关办法举行传送,加入办法能够经由过程办法挪用来实行.如许,你的代码就可以完成MIDlet类和界面分别了.
java主要分三块,j2se:java的基础核心语言。j2me:java的微型模块,专门针对内存小,没有持续电源等小型设备。j2ee:java的企业模块,专门针对企业数据库服务器的连接维护。 |
|