Java is an Object Oriented programming language.
Object Oriented mean that representing the concepts as "objects" that have data fields (attributes that describe the object) and associated procedures known as methods. Objects, which are usually instances of classes, are used to interact with one another to design applications and computer programs.
Object mean the ready copy of a class. For example : I have made a class like
class student {
Roll :
Subject:
Name:
}
Now if I use this class as:
student1.student{
001
English
Ranjay
}
Then it is a object which is used by calling student class as student1.student.
Here in Object oriented therefore a ready made instances, class can be used.The language like java, vb.net,c++ etc are object oriented programming language.
Object Oriented mean that representing the concepts as "objects" that have data fields (attributes that describe the object) and associated procedures known as methods. Objects, which are usually instances of classes, are used to interact with one another to design applications and computer programs.
Object mean the ready copy of a class. For example : I have made a class like
class student {
Roll :
Subject:
Name:
}
Now if I use this class as:
student1.student{
001
English
Ranjay
}
Then it is a object which is used by calling student class as student1.student.
Here in Object oriented therefore a ready made instances, class can be used.The language like java, vb.net,c++ etc are object oriented programming language.