Ask your own question, for FREE!
Computer Science 17 Online
OpenStudy (anonymous):

how to run a java class with static data members in other java class having main method?

OpenStudy (anonymous):

@sorabh.v6 : how is the code, i mean can u plz elaborate a little..?

OpenStudy (anonymous):

Static memebers of class can directly be used by Class reference in other class if they are public. e.g.: <ClassName>.<MemeberName>;

OpenStudy (anonymous):

yes this is correct. if u have your main in some class and u want to call a method in some other class which has static members, u can do it using : <class_name>.<method_name> instead of using objects like ( <obj>.<method>)which is usually done , that is the advantage of having "static" keyword.

OpenStudy (anonymous):

thanks frnds .... sorted out the problem.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!