JAVA标签

[复制链接]
查看11 | 回复2 | 2009-2-22 22:43:25 | 显示全部楼层 |阅读模式
import java.applet.*;
import java.awt.*;
public class Greet extends Applet
{
//为什么第八行总提示找不到符号!
Label greeting=new Label("Hello.who are you?");
Font bigFont=new Font("TimesRoman",Font.ITALIC,24);
Button pressme=new Button("press me");
Textfiled answer=new Textfiled(10);
public void init()
{
greeting.setFont(bigFont);
add(greeting);
add(pressme);
add(answer);
answer.requesFocus();
}
}

回复

使用道具 举报

千问 | 2009-2-22 22:43:25 | 显示全部楼层
import java.applet.*; import java.awt.*; public class AppletSample {public class AppleSample extends Applet{Label greeting=new Label("Hello.who are you?");Font bigFont=new Font("TimesRoman",Font.ITALIC,24);Button pressme=new Button("press me");TextField answer=new TextField(10);public void init(...
回复

使用道具 举报

千问 | 2009-2-22 22:43:25 | 显示全部楼层
你写错了,是TextField而不是Textfield大小写的问题,Java是大小写敏感的...
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行