structures of java program
Answers
Answered by
6
//Comment line
class Class_name
{
public void Method_name (input)
{
statements
}
}
class Class_name
{
public void Method_name (input)
{
statements
}
}
Answered by
3
Structure of a java program is the standard format released by Language developer to the Industry programmer. Sun Micro System has prescribed the following structure for the java programmers for developing java application. A package is a collection of classes, interfaces and sub-packages.
Similar questions