标签: java java-me
public class hello extends MIDlet { private Form form; private Display display; public hello() { // what does this super keyword foes in this program super(); }
super关键字在该程序中的作用是什么......?
答案 0 :(得分:2)
super指的是超类的构造函数。它正在调用MIDlet的构造函数。