Reputation: 57
I am trying to use Comparable Interface in Eclipse, but I keep getting the above error, I am not able to import package java.lang;
Upvotes: 0
Views: 97
Reputation: 4558
It's either :
import java.lang.*;
Or
import java.lang.Comparable;
but not :
import java.lang;
Because it's a syntax error in Java.
Upvotes: 1