problem using package
package family;
public class Mother
{
public static void display()
{
System.out.println("My mother's name is Kanaka Lata Biswal");
}
}
import MyClass.family.*;
public class MyFamily{
public static void main(String args[])
{
Mother.display();
}
}
The above programme shows the following error:
MyFamily.java:7: cannot access MyClass.family.Mother
bad class file: .\MyClass\family\Mother.class
class file contains wrong class: family.Mother
Please remove or make sure it appears in the correct subdirectory of the classpa
th.
Mother.display();
^
1 error