Aman Singh
Aman Singh

Reputation: 57

The declared package "java.lang" doesn't match the expected package ""

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

Answers (1)

Mickael
Mickael

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

Related Questions