编程中出现的错误:
1.Label写成lable
2.f.setVisible(true);没写导致看不到现象
3.setVisible Button 拼写错误
import java.awt.*;
public class A
{
public static void main(String args[])
{
Frame f=new Frame ("登录信息");
f.setVisible(true);
TextField id=new TextField(10);
TextField pw=new TextField(10);
Button login=new Button("登录");
Button cancel=new Button("注销");
pw.setEchoChar('*');
f.setLayout(new GridLayout(3,2));
f.add(new Label("ID:",Label.CENTER));
f.add(id);
f.add(new Label("pw:",Label.CENTER));
f.add(pw);
f.add(login);
f.add(cancel);
f.pack();
}
}
阅读(362) | 评论(0) | 转发(0) |