Why only one Class is public in one file? Explain in
details. Thanks in Advance.
Answer Posted / ganesh slv
You can create one or more classes in single file. Only one
class may be declared as public. This is your Optional.
If you declared a class as public, your file name should be
the save of your class name.
Public class can be accessible from other applications.
Example, your applet code can be run in a web browser. This
public class may execute other classes in the same file.
If you declared two classes as public, your file name will
be what?
Note the Example :
class First {
// Some codes here
}
public class Second {
// some codes here
// In core, your main method should be here.
// You have to save the file as Second.
}
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
How is a variable stored in memory?
How do you escape in java?
How do you declare a variable?
How do you remove an object from an arraylist in java?
How do you define a parameter?
Explain the difference between arraylist and linkedlist in java?
What are the differences between Java 1.0 and Java 2.0?
what do you understand by synchronization? Or what is synchronization and why is it important? Or describe synchronization in respect to multithreading? Or what is synchronization? : Java thread
What are heap memory and stack memory and what are memory tables.
What is the difference between break and continue statements?
Explain java coding standards for constants?
worst case complexities of Quick sort and Merge sort.
What is java abstraction with example?
What is array pointers ?
What does bitwise or mean?