callin a class from antoher class
i did a Display class to call Client class :
package Details;
public class Display{
public static void main (String[] args) {
details d = new details(); \\ HERE IT CANNOT FIND SYMBOL
d.details();
}
}
and the output is :
error: cannot find symbol
CAN SOMEONE HELP ME?
Re: callin a class from antoher class
Please read the forum rules: double posting is not allowed and as a result, your other thread has been deleted.
As for your problem: Where is the class 'details' defined?