请在j2me程序中解释一下这段代码..!

时间:2015-11-03 13:49:06

标签: 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关键字在该程序中的作用是什么......?

1 个答案:

答案 0 :(得分:2)

super指的是超类的构造函数。它正在调用MIDlet的构造函数。