当编译和运行下列代码时会发生什么?( )
- public class Test extends Thread {
- public void start() {
- for (int i = 0; i < 10; i++) {
- System.out.print(i + " ");
- }
- }
- public static void main(String[] args) {
- Test test = new Test();
- test.run();
- }
- }
复制代码
A)编译错误,因为Test类中没有重写run()方法
B)运行错误,因为Test类中没有重写run()方法
C)正常运行,输出0 1 2 3 4 5 6 7 8 9
D)正常运行,输出为空
|
|