java packages: cannot find symbol

gammaraptorr

New Member
I'm having a strange error. I have 2 classes in the same package but they can't find each other. From what I remember, as long as the classes are in the same package, they should be able to call each other's methods. My code looks similar to this:in A.java:\[code\]package com.mypackage;public class A{ public static int read(){ //some code }}\[/code\]in B.java:\[code\]package com.mypackage;public class B{ public static void main(String args[]){ int x = A.read(); }}\[/code\]and it's giving me a \[code\]cannot find symbol variable A\[/code\] error.Both of these class depend on some jar files, but I already included the path of those jars to CLASSPATH and A.java compiled fine, but B can't find A for some reasons...If I removed the package in both classes then they would compile fine. Thank you! Any help is appreciated!
 
Back
Top