问答详情
源自:7-2 使用包管理 Java 中的类

the import com.imooc.MyClass is never used

在主方法中导入包,结果显示the import com.imooc.MyClass is never used,然后运行的时候没有任何结果

https://img4.mukewang.com/5c30b1860001fa5c14870437.jpg

https://img3.mukewang.com/5c30b1870001d9d715170452.jpg


提问者:804297096 2019-01-05 21:31

个回答

  • 依水
    2019-01-23 12:17:34

    你的类是MyClass,就改为MyClass test = new MyClass();

  • 依水
    2019-01-23 12:16:31

    警告并不影响你当前运行。你当前没有任何输出结果:是因为你只创建了了一个TestMain 的实例test,你想要的应该是在TestMain中创建一个MyTest的实例。你将TestMain test = new Testmain();改为:MyTest test = new MyTest();即可 

  • 慕仰5534561
    2019-01-05 23:28:01

    首先这类报错是因为 你导入却没有用到,给你的警告 。the import   XXXX   is never used  (xxx是什么什么包)

     其次 你这个代码 也并不会有任何输出结果