Java Reference
In-Depth Information
Classes and Methods
Classes might contain only code or data but may also contain both. A class is declared by
keyword class and it can be complex in nature.
Syntax
Class classname
{
Type instance-variable a;
Type instance-variable b;
.
.
.
Type instance-variable n;
}
Type method a (parameter-list)
{
//body of method
Search WWH ::




Custom Search