Try this piece of code. It compiles.
import java.io.*;
import java.io.*;
import java.io.*;
import java.util.*;
import java.util.*;
import java.util.*;
import javax.swing.*;
import javax.swing.*;
import javax.swing.*;
public class ImportMultipleTimes
{
public static void main(String[] args)
{
System.out.println("3 packages imported multiples times in the same class.");
}
}
Does the compiler simply ignore the additional import statements?
Yes, it will be considered redundant by the compiler, as specified by the JLS 7.5.2:
Note:
import somepackage.*;