Why only one Class is public in one file? Explain in
details. Thanks in Advance.
Answer Posted / ganesh slv
/****** Program Starts Here ************/
/**
* Save this file as Class1.java. All should be in single
* file
*
* Date : 14.04.10
* @author Ganesh Slv
*/
public class Class1 { // Note this line
/* This Class is public. So your file name should be the
same name.
*/
public static void main (String arg[]) {
System.out.println (" This is from Class1.. ");
} // Main
} // Class1
class Class2 { // Note this line
/* This class is not public. so it doesn't matter
your file name.
*/
public static void main (String arg[]) {
System.out.println (" This from Class2..");
}
}
class Class3 {
/* This class Calls the main() in Class1.
*/
static public void main (String arg[]) {
System.out.println (" This is from Class3..");
// Creating obj to Class1
Class1 c1 = new Class1 ();
c1.main (arg); //Main must have one arg as String[] type
}
}
/********** Program Ends here ******/
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is it possible to define a method in java class but provide it’s implementation in the code of another language like c?
How is abstraction implemented in java ?
What is java util concurrentmodificationexception?
What is the difference between synchronized and synchronized block?
What do you understand by abstract classes?
What access modifiers can be used for class ?
What is meant by the value of a variable?
Explain the use of sublass in a java program?
How transient variable is different from volatile variable?
Can we call the constructor of a class more than once for an object?
What does exp mean in math?
What is the Scope of Static Variable?
What is the full meaning of java?
What are different access specifiers in java? Explain
What are multiple inheritances?