主题:[讨论]求助
[size=6]求助[/size]
import java.applet.*;
import java.awt.*;
class Father
{private int money;
float weight ,height;
String head;
String speak(String s)
{return s;
}
}
class Son extends Father
{String hand ,foot;
}
public class Example6 extends Applet
{Son boy;
public void init()
{boy = new Son() ;
boy.weight =1.80f;boy.height=120f;
boy.head = "一个头";boy.hand="两只手";boy.foot="两只脚";
}
public void Paint (Graphics g)
{
g.drawString(boy.speak("我是儿子"),12,20);
g.drawString(boy.hand + boy.foot+boy.head +boy.weight + boy.height,12,40);
}
}
请教下这个程序哪里有问题,我用浏览器执行了,可是什么反应也没有。。。。。。。[size=5] [/size][em17][em17][em17][em17][em17][size=6][/size]
import java.applet.*;
import java.awt.*;
class Father
{private int money;
float weight ,height;
String head;
String speak(String s)
{return s;
}
}
class Son extends Father
{String hand ,foot;
}
public class Example6 extends Applet
{Son boy;
public void init()
{boy = new Son() ;
boy.weight =1.80f;boy.height=120f;
boy.head = "一个头";boy.hand="两只手";boy.foot="两只脚";
}
public void Paint (Graphics g)
{
g.drawString(boy.speak("我是儿子"),12,20);
g.drawString(boy.hand + boy.foot+boy.head +boy.weight + boy.height,12,40);
}
}
请教下这个程序哪里有问题,我用浏览器执行了,可是什么反应也没有。。。。。。。[size=5] [/size][em17][em17][em17][em17][em17][size=6][/size]