What is Class Explain With Example?
Class is Nothing but it template for object.In simple word class is a pattern which define any of Object.
when we create class in java first step we write Keyword Class and give the name of class.
class is define in curly Brace {} in between write the java code.
Syntext
Class NAME OF CLASS
{
}
Example
Class A
{
// java code
}
we can Created Multiple class in Single Program.
Programmer can define nested Class
Class is Nothing but it template for object.In simple word class is a pattern which define any of Object.
when we create class in java first step we write Keyword Class and give the name of class.
class is define in curly Brace {} in between write the java code.
Syntext
Class NAME OF CLASS
{
}
Example
Class A
{
// java code
}
we can Created Multiple class in Single Program.
Programmer can define nested Class