此题为判断题(对,错)。
第1题:
阅读下面程序 class Test implements Runnable { public static void main(String[] args) { Test t=new Test(); t.start(): } public void run() {} } 下列关于上述程序的叙述正确的是
A.程序不能通过编译,因为start()方法在Test类中没有定义
B.程序编译通过,但运行时出错,提示start()方法没有定义
C.程序不能通过编译,因为run()方法没有定义方法体
D.程序编译通过,且运行正常
第2题:
请阅读下面程序,说明该程序创建线程使用的方法是( )。
A.继承Thread类
B.实现Runnable接口
C.tl.start( )
D.t2.start( )
第3题:
汇编源程序从START标号处开始执行。
第4题:
有以下程序
#include <stdio.h>
main( )
{ int arr[ ]={1,3,5,7,2,4,6,8},i,start;
scanf("%d", &start);
for (1=0; 1<3; i++)
printf(”%d”,arr[ (start+i)%8] );
}
若在程序运行时输入整数10<回车>,则输出结果为【 12 】。
第5题:
31、源程序中只能用标号start表示程序的起始执行点。