Is there a downside to starting every java program with all the imports? This would prevent me having to recall which import I need.
Could I simply start the java code with
import java.util.*;
import java.io.*;
//etc
What is the downside to coding this way?