| Author |
package problem ?
|
satish limaye
Greenhorn
Joined: Jan 28, 2002
Posts: 4
|
|
Here is the dir structure c:\java\suncert\OverLoadEx\OverLoadEx.java When I try to compile it in the dir c:\java\suncert\OverLoadEx java OverLoadEx.java I get an error OverLoadEx.java:1: OverLoadEx clashes with package of same name Here is the file : class OverLoadEx { public static void main(String args[]) { int x; long y; } }
|
 |
Cindy Glass
"The Hood"
Sheriff
Joined: Sep 29, 2000
Posts: 8521
|
|
So it thinks that there might be a confusion between the package (subdirectory) with that name - or the class with that name. Change one of them.
|
 |
 |
|
|
subject: package problem ?
|
|
|