第一行为什么会产生编译错误。 public class X implements Runable{ public v
第一行为什么会产生编译错误。publicclassXimplementsRunable{publicvoidrun(){System.out.println(″thisi...
第一行为什么会产生编译错误。
public class X implements Runable{
public void run( ){ System.out.println(″this is run()″); }
public static void main(String args[])
{
Thread t=new Thread(new X( ));
t.start( );
}
} 展开
public class X implements Runable{
public void run( ){ System.out.println(″this is run()″); }
public static void main(String args[])
{
Thread t=new Thread(new X( ));
t.start( );
}
} 展开
1个回答
展开全部
接口:定义要实现哪些具体实现实现类实现
另外接口存构造所new b()或报编译错误
确写
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
interface B {
public void function_a();
}
public class A implements B {
public void function_a() {
System.out.println("实现B接口");
}
}
public class Test {
public static void main(String[] args) {
B b = new A();
b.function_a();
}
}
要养代码规范类名首字母要写
另外接口存构造所new b()或报编译错误
确写
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
interface B {
public void function_a();
}
public class A implements B {
public void function_a() {
System.out.println("实现B接口");
}
}
public class Test {
public static void main(String[] args) {
B b = new A();
b.function_a();
}
}
要养代码规范类名首字母要写
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询