What is the proper style for listing imports in Java?

前端 未结 10 1084
梦谈多话
梦谈多话 2021-02-18 16:01

Is it better to list each individual piece of a package you\'re going to need (see #1) or is it better to just import everything from a package (see #2)?

1



        
10条回答
  •  忘掉有多难
    2021-02-18 16:29

    Import individually, it saves the compiler from having to look through each package for each class and therefore makes things run quicker.

提交回复
热议问题