当前位置:  技术问答>java相关

快来看看这个程序错在哪里????????

    来源: 互联网  发布时间:2017-05-01

    本文导语:  快来看看这个程序错在哪里???????? import java.awt.*; import java.awt.event.*; public class ApplicationGraphicsInOut { public static void main(String args[]) { new FrameInOut(); } } class FrameInout extends Frame implements ActionListener { Label prompt...

快来看看这个程序错在哪里????????
import java.awt.*;
import java.awt.event.*;
public class ApplicationGraphicsInOut
{
public static void main(String args[])
{
new FrameInOut();
}
}
class FrameInout extends Frame implements ActionListener
{
Label prompt ;
TextField input,output;

FrameInOut()
{
super("图形界面的Java Application程序");
prompt=new Label("请输入您的名字:");
input=new TextField(6);
output=new TextField(20);
setLayout(new FlowLayout());
add(prompt);
add(input);
add(output);
input.addActionListener(this);
setSize(300,200);
show();
}
public void actionPerformed(ActionEvent e)
{
output.setText(input.getText()+",欢迎您!");
}
}

|
改成下面这个就可以了!
import java.awt.*;
import java.awt.event.*;
public class ApplicationGraphicsInOut
{
        public static void main(String args[])
        {
                new FrameInOut();
        }
}
class FrameInOut extends Frame implements ActionListener
{
        Label prompt ;
        TextField input,output;

        public FrameInOut()
        {
                super("图形界面的Java Application程序");
                prompt=new Label("请输入您的名字:");
                input=new TextField(6);
                output=new TextField(20);
                setLayout(new FlowLayout());
                add(prompt);
                add(input);
                add(output);
                input.addActionListener(this);
                setSize(300,200);
                show();
        }
        public void actionPerformed(ActionEvent e)
        {
                output.setText(input.getText()+",欢迎您!");
        }
}

|
其实错误一共有两处:
1、prompt=new Label("请输入您的名字:");//这个分号改成半角的
2、class FrameInout extends Frame implements ActionListener
这个类名跟你调用的new FrameInOut以及构造函数不相同,因为类名的o没有大写,改为
class FrameInOut extends Frame implements ActionListener
ok:)??????

|
帮你改过!!!
输入标点符号时不要用中文输入法!!!并注意英文的大小写!!!
import java.awt.*;
import java.awt.event.*;

public class ApplicationGraphicsInOut
{
public static void main(String args[])
{
new FrameInout();
}
}

class FrameInout extends Frame implements ActionListener
{
Label prompt ;
TextField input,output;

public FrameInout()
{
super("图形界面的Java Application程序");
prompt=new Label();
prompt.setText("请输入您的名字:");
input=new TextField(6);
output=new TextField(20);
setLayout(new FlowLayout());
add(prompt);
add(input);
add(output);
input.addActionListener(this);
setSize(300,200);
show();
}
public void actionPerformed(ActionEvent e)
{
output.setText(input.getText()+",欢迎您!");
}
}

    
 
 

您可能感兴趣的文章:

 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 重装服务器后IIS网站错误(应用程序中的服务器错误)
  • 为什么我在java程序里启动的一个程序在java程序关闭后,该程序的所有进程都关掉了
  • windows server2008上PowerBuilder程序系统错误解决方法
  • Linux 编程怎么样在程序开启一个程序,和关闭一个程序?
  • c语言判断某一年是否为闰年的各种实现程序代码
  • 请问从一个java程序中如何调用另一java程序,并控制可以其状态(最小化、最大化、结束程序),还有怎样知道那个被调用的程序结束。
  • 程序员的八种级别,你属于哪一级?
  • Linux下的程序是在内存中运行的吗?为什么在程序运行的时候可以删除程序文件?
  • Linux下指定运行时加载动态库路径及shell下执行程序默认路径
  • 我的程序是用c写的gtk+程序,有个函数的参数要传给它图片的文件名,但是图片和原程序不在同一目录下怎么办?怎么在程序里指定文件的路径
  • 在docker容器中通过apt-get安装新的程序
  • 为什么linux下的C++程序这么少见? 请问那里有linux下的C++程序?什么类型的程序都可以.
  • linux下通过crond实现自动执行程序
  • 我写了个linux下的网络程序,程序在多个电脑间通信,但是我没有多个电脑,怎么调试这样的程序啊?
  • http协议介绍,文件上传分析及程序举例
  • 在java控制台程序中,可以用System.exit(0);使用一个程序终止,那么在servlet中如何使一个servlet程序终止呢?
  • 程序员赚钱致富的6种方法
  • 程序调用脚本,脚本启动另一个程序,如何让原始程序彻底释放资源?
  • HASH查找的程序实现及性能分析
  • python计算程序开始到程序结束的运行时间和程序运行的CPU时间
  • 程序员为了健康必看!早晨空腹喝水,是对还是错?
  • linux下,一个程序如何向另一个程序发送消息,另一个程序如何接收


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3