整专业资料
微信QQ群
考生网QQ群

群号:517231281

扫码加群
点击二维码加群

考生网微信公众号

微信号:zikaosw

课程试听
最新资讯

手机端访问

1、直接输入www.zikaosw.cn
2、扫描左侧二维码

登录 | 注册
登录/注册后,可享受
  • 课程免费试听
  • 试做在线题库
  • 学习提升指导
  • [主观题] 【程序分析题】阅读下列程序,写出程序运行结果。
    import  java.awt.event.*;
    import  javax.swing.*;
    public  class  C3502  implements  MouseMotionListener
    {
    JTextField  text=new  JTextField(30);
    C3502()
    {
    JFrame  myWin=new  JFrame("Ex0611");
    myWin.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    myWin.setBounds(100,100,300,100);
    myWin.getContentPane().add(text,"North");
    myWin.addMouseMotionListener(this);
    myWin.setVisible(true);
    }
    public  void  mouseDragged(MouseEvent  e)
    {
    int  x=e.getX(),y=e.getY();
    text.setText("拖动鼠标,鼠标坐标为:"+x+","+y);
    }
    public  void  mouseMoved(MouseEvent  e)
    {
    int  x=e.getX(),y=e.getY();
    text.setText("移动鼠标,鼠标坐标为:"+x+","+y);
    }
    public  static  void  main(String[]  args)
    {
    new  C3502();
    }
    }
     

     纠错    

  • 助考班推荐

您可能感兴趣的试题

  • 1、[单选题]为8位字节流数据提供读操作支持的类是()

    • A、FileInputStream
    • B、FileOutputStrem
    • C、FileReader
    • D、FileWriter
  • 2、[填空题]流使用结束后,关闭流并且释放与该流相关的资源,用______方法。
     

  • 3、[填空题]在Java语言中有定义:char c[]-{0',1,2', '3', '4'};则c. length-.
    【原题如下】
    题中横线处答案为:______。

     

  • 4、[填空题]第1题 在  Java  中所有实现的多维数组,实际上是由一维数组构成的______。
     

  • 5、[主观题]【程序分析题】阅读下列程序,写出程序运行结果。
    import  java.awt.event.*;
    import  javax.swing.*;
    public  class  C3502  implements  MouseMotionListener
    {
    JTextField  text=new  JTextField(30);
    C3502()
    {
    JFrame  myWin=new  JFrame("Ex0611");
    myWin.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    myWin.setBounds(100,100,300,100);
    myWin.getContentPane().add(text,"North");
    myWin.addMouseMotionListener(this);
    myWin.setVisible(true);
    }
    public  void  mouseDragged(MouseEvent  e)
    {
    int  x=e.getX(),y=e.getY();
    text.setText("拖动鼠标,鼠标坐标为:"+x+","+y);
    }
    public  void  mouseMoved(MouseEvent  e)
    {
    int  x=e.getX(),y=e.getY();
    text.setText("移动鼠标,鼠标坐标为:"+x+","+y);
    }
    public  static  void  main(String[]  args)
    {
    new  C3502();
    }
    }
     

Copyright © 2010 - 2023 湖南求实创新教育科技有限公司 All Right Reserved.

温馨提示:如您需要的资料本网暂时没有,请于工作日08:00-18:00,点击这里,联系客服及时补充资料。