课程
/后端开发
/Java
/Java入门第二季 升级版
在主方法中导入包,结果显示the import com.imooc.MyClass is never used,然后运行的时候没有任何结果
2019-01-05
源自:Java入门第二季 升级版 7-2
正在回答
你的类是MyClass,就改为MyClass test = new MyClass();
警告并不影响你当前运行。你当前没有任何输出结果:是因为你只创建了了一个TestMain 的实例test,你想要的应该是在TestMain中创建一个MyTest的实例。你将TestMain test = new Testmain();改为:MyTest test = new MyTest();即可
首先这类报错是因为 你导入却没有用到,给你的警告 。the import XXXX is never used (xxx是什么什么包)
其次 你这个代码 也并不会有任何输出结果
举报
课程升级!以终为始告别枯燥,在开发和重构中体会Java面向对象编程的奥妙
2 回答导入包后提示The import com.mei is never used
6 回答为什么会显示The value of the local variable phone2 is not used?
3 回答为什么会显示The value of the local variable phone2 is not used?
5 回答请问出现The method call() is undefined for the type Azsc 是什么原因?
2 回答The constructor Student(int, String, int, int, int, String) is undefined