在JAVA语言中public class InterfaceTest{ public static void main(String args[]); {
MyTestmt=newMyTest();mt.work;}}classMyTestimplementsMyInterface{publicvoidwork(){Syst...
MyTest mt=new MyTest();
mt.work;
}
}
class MyTest implements MyInterface{
public void work(){
System.out.println("I'm working");
}
}
interface MyInterface{
public void work();
}
这些代码每一句都是什么意思,求解?本人是初学者不明白 展开
mt.work;
}
}
class MyTest implements MyInterface{
public void work(){
System.out.println("I'm working");
}
}
interface MyInterface{
public void work();
}
这些代码每一句都是什么意思,求解?本人是初学者不明白 展开
6个回答
展开全部
public class InterfaceTest{ //定义主类
public static void main(String args[]){//main方法
MyTest mt=new MyTest(); //实例化一个MyTest类的对象mt
//mt.work是一个方法后面有一个()你不要少掉
mt.work;//对象mt调用方法work(),你少了()
}
}
class MyTest implements MyInterface{//MyTest实现MyInterface接口
public void work(){//实现接口里面的方法
System.out.println("I'm working");//打印I'm working
}
}
interface MyInterface{//定义接口MyInterface
public void work();//定义方法
}
public static void main(String args[]){//main方法
MyTest mt=new MyTest(); //实例化一个MyTest类的对象mt
//mt.work是一个方法后面有一个()你不要少掉
mt.work;//对象mt调用方法work(),你少了()
}
}
class MyTest implements MyInterface{//MyTest实现MyInterface接口
public void work(){//实现接口里面的方法
System.out.println("I'm working");//打印I'm working
}
}
interface MyInterface{//定义接口MyInterface
public void work();//定义方法
}
展开全部
public class InterfaceTest{ //定义主类
public static void main(String args[]){//main方法
MyTest mt=new MyTest(); //实例化一个MyTest类的对象mt
mt.work;//对象mt调用方法work(),你少了()
}
}
class MyTest implements MyInterface{//MyTest实现MyInterface接口
public void work(){//实现接口里面的方法
System.out.println("I'm working");//打印I'm working
}
}
interface MyInterface{//定义接口MyInterface
public void work();//定义方法
}
public static void main(String args[]){//main方法
MyTest mt=new MyTest(); //实例化一个MyTest类的对象mt
mt.work;//对象mt调用方法work(),你少了()
}
}
class MyTest implements MyInterface{//MyTest实现MyInterface接口
public void work(){//实现接口里面的方法
System.out.println("I'm working");//打印I'm working
}
}
interface MyInterface{//定义接口MyInterface
public void work();//定义方法
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public void work(){
System.out.println("I'm working");
}
这句话的意思是控制台输出I'm working 并且把它写在了work方法里
MyTest mt=new MyTest();
实例化
mt.work; 这里你应该少了个()括号
调用了work方法
初学的话 你就这么理解
System.out.println("I'm working");
}
这句话的意思是控制台输出I'm working 并且把它写在了work方法里
MyTest mt=new MyTest();
实例化
mt.work; 这里你应该少了个()括号
调用了work方法
初学的话 你就这么理解
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public class Test {
public static void main(String args[]){
MyTest mt = new MyTest(); //对象实例化
mt.work();//调用此对象方法
}
}
class MyTest implements MyInterface{//实现接口
public void work(){//实现接口中的work方法
System.out.println("I'm working");
}
}
interface MyInterface{ //定义接口
public void work();
}
public static void main(String args[]){
MyTest mt = new MyTest(); //对象实例化
mt.work();//调用此对象方法
}
}
class MyTest implements MyInterface{//实现接口
public void work(){//实现接口中的work方法
System.out.println("I'm working");
}
}
interface MyInterface{ //定义接口
public void work();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询