Does an import wildcard import everything all the time?

后端 未结 3 1567
无人及你
无人及你 2021-01-14 12:57

I was working on a little Java program and was using arrays so I had done:

import java.util.Arrays;

Later I started expanding on what I had

3条回答
  •  被撕碎了的回忆
    2021-01-14 13:29

    The wildcard imports everything in that package. However, use an IDE like Eclipse and it offers you the possibility to organize the imports.

提交回复
热议问题