Recursive import Java

后端 未结 4 1174
無奈伤痛
無奈伤痛 2021-01-18 18:24

I am a newbie to Java development. I have a quick question regarding recursive imports in Java.

Lets assume Package \"pkg\" contains the following

  • clas
4条回答
  •  南笙
    南笙 (楼主)
    2021-01-18 19:09

    The convention in Java is to import only the classes you required. Most IDEs will automatically organise them for you. Importing classes in bulk is not common like in other languages.

提交回复
热议问题