Import a custom class in Java

前端 未结 7 1453
悲哀的现实
悲哀的现实 2020-11-29 06:57

How do I import a class I wrote in a different file? All my classes are under the same package.

7条回答
  •  萌比男神i
    2020-11-29 07:28

    First off, avoid using the default package.

    Second of all, you don't need to import the class; it's in the same package.

提交回复
热议问题