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

群号:517231281

扫码加群
点击二维码加群

考生网微信公众号

微信号:zikaosw

课程试听
最新资讯

手机端访问

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

登录 | 注册
登录/注册后,可享受
  • 课程免费试听
  • 试做在线题库
  • 学习提升指导
  • [主观题] 【简答题】CardLayout布局的容器可容纳多个组件,但是多个组件拥有一个显示空间。如何设置CardLayout布局及显示某一组件?
     

     纠错    

  • 助考班推荐

您可能感兴趣的试题

  • 1、[单选题]下列有关事件监视器的说法正确的是()

    • A、一个组件上不可以注册多个事件监视器
    • B、一个事件监视器可以被注册到多个组件上
    • C、一个组件上注册多个事件监视器会发生冲突,不会起作用
    • D、一个组件上注册多个事件监视器,只有最后一个事件监视器会起作用
  • 2、[单选题]在Java语言中,支持网络通信的软件所在的包是()

    • A、java.util
    • B、java.net
    • C、java.io
    • D、java.internet
  • 3、[填空题]流使用结束后,关闭流并且释放与该流相关的资源,用______方法。
     

  • 4、[主观题]【程序分析题】阅读下面程序,写出程序功能。
    import  java.applet.*;import  java.awt.*;
    public  class  Class3602  extends  Applet  implements  Runnable
    {
    Thread  redBall,blueBall;Graphics  redPen,bluePen;
    int  blueSeta=0,redSeta=0;
    public  void  init()
    {
    setSize(250,200);
    redBall=new  Thread(this);blueBall=new  Thread(this);
    redPen=getGraphics();bluePen=getGraphics();
    redPen.setColor(Color.red);bluePen.setColor(Color.blue);
    setBackground(Color.gray);
    }
    public  void  start()
    {
    redBall.start();blueBall.start();
    }
    public  void  run()
    {
    int  x,y;
    while(true)
    {
    if(Thread.currentThread()==redBall)
    {
    x=(int)(80.0*Math.cos(3.1415926/180.0*redSeta));
    y=(int)(80.0*Math.sin(3.1415926/180.0*redSeta));
    redPen.setColor(Color.gray);
    redPen.fillOval(100+x,100+y,10,10);
    redSeta  +=3;
    if(redSeta>=360)  redSeta=0;
    x=(int)(80.0*Math.cos(3.1415926/180.0*redSeta));
    y=(int)(80.0*Math.sin(3.1415926/180.0*redSeta));
    redPen.setColor(Color.red);
    redPen.fillOval(100+x,100+y,10,10);
    try  {redBall.sleep(20);}
    catch(InterruptedException  e){}
    }
    else  if  (Thread.currentThread()==blueBall)
    {
    x=(int)(80.0*Math.cos(3.1415926/180.0*blueSeta));
    y=(int)(80.0*Math.sin(3.1415926/180.0*blueSeta));
    bluePen.setColor(Color.gray);
    bluePen.fillOval(150+x,100+y,10,10);
    blueSeta-=3;
    if(blueSeta<=-360)  blueSeta=0;
    x=(int)(80.0*Math.cos(3.1415926/180.0*blueSeta));
    y=(int)(80.0*Math.sin(3.1415926/180.0*blueSeta));
    bluePen.setColor(Color.blue);
    bluePen.fillOval(150+x,100+y,10,10);
    try  {blueBall.sleep(40);}
    catch(InterruptedException  e){}
    }
    }
    }
    }
     

  • 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,点击这里,联系客服及时补充资料。