All the functions are performed in the java with the help of classes and objects. Thus java is called a true object oriented programming language.
Class
A class is encapsulates the data and functions and in java data is called as fields and the functions are called as methods. And the classes are accessed with the help of objects.
Format of a class
class class-name
{
declarations of variables
declarations of methods
}
Class name: Here in above syntax the ‘class’ is a keyword in java. Class name can be any valid name except from the keywords.
Instance-variables: Then we can declare instance-variables. We can declare instance-variables more than 1 as required in program.
e.g: int num;
Then these instance-variables can be accessed by the objects only with the help of methods.
One thing is more important that at the end of class we don’t require semi-colon after the closed parentheses where it is must in c++.
more: