更多"当实现Runnable接口时,要实现的方法是()。"的相关试题:
[填空题]当实现Runnable接口时,要实现的方法是【 】。
[填空题]当实现Runnable接口时,要实现的方法是 【14】 。
[单项选择]一个实现Runnable接口的类必须要实现的方法是( )
A. start()
B. run()
C. sleep()
D. init()
[简答题]请写出用Runnable接口实现多线程的主要工作。
[单项选择]下列程序通过实现Runnable接口创建一个线程,选择正确的语句填入程序的横线处。
class MyRun implements Runnable
String str;
MyRun(String s)
str = s;
public void run( )
System.out.println(str);
public class ex40
public static void main(String[] args)
String name = "实现阶段Runnable 接口";
MyRun my = new MyRun(name);
Thread th =
th. start ( );
A. new MyRun(my) B. new Thread( )
C. new Thread(my) D. Thread(my)
[填空题]通过实现Runnable接口创建线程,请在画线处加入正确的代码完成此程序 【9】 。
public class ThreadTest
{
public static void main(String args[ ]
{
Thread t1 = new Thread(new Hello( )
Thread t2 = new Thread(new Hello( )
___________;
t2.start( );
}
}
class Hello implements Runnable
{
int i;
public void run( )
{
while (true)
{
System.out.println("Hello"+i++
if(i==5) break;
}
}
}
[填空题]通过实现Runnable接口创建线程,请在画线处加入正确的代码完成此程序 【9】 。
public class ThreadTest
public static void main(String args[ ]
Thread t1 = new Thread(new Hello( )
Thread t2 = new Thread(new Hello( )
___________;
t2.start( );
class Hello implements Runnable
int i;
public void run( )
while (true)
System.out.println("Hello"+i++
if(i==5) break;
[填空题]通过实现Runnable接口创建线程,请在画线处加入正确的代码完成此程序______。
publicclass ThreadTest
publicstaticvoid main(Stringargs[])
Threadt1=newThread(newHello( )):
Threadt2=newThread(newHellO( ));
T2.start( );
classHelloimplementsRunnable
intI;
publicvoidIUB( )
while(true)
System.out.println(“Hello”+i++);
If(i==5)break;
[填空题]通过实现Runnable接口创建线程,请在画线处加入正确的代码完成此程序_________。
public class ThreadTest
public static void main(String args[])
Thread t1=new Thread(new Hello( )):
Thread t2=new Thread(new Hello( ));
________;
t2.start( );
class Hello implements Runnable
int i;
public void run( )
while(true)
System.out.println("Hello"+i++);
If(i==5) break:
[单项选择]下列WindowListener接口方法中当窗口被激活时调用的方法是( )。
A. windowActivated(WindowEvent)
B. windowClosed(WindowEvent)
C. windowOpened(WindowEvent)
D. windowDeactivated(WindowEvent)
[单项选择]菜单的事件源是用鼠标点击某个菜单项,要实现的接口方法是actionPerformed(ActionEvent e),获得事件源的方法是getSource( ),处理该事件的接口是( )
A. ActionListener
B. actionPerformed
C. getSource
D. ItemListener
[填空题]Java接口内的方法都是公共的、______的,实现接口就要实现接口内的所有方法。