Back

Forum Replies Created

Viewing 0 reply threads
  • Author
    Posts
    • #13068
      SSam
      Participant

      Object is a real world entity which can be created multiple times depending on the requirement. When an object is created a memeory is allocated. In Java object can be created in multiple ways including new keyword, newInstance() method, clone() method, factory method and deserialization.
      Whereas class is a blueprint or template from which objects are created. It is a group of similar objects which is declared using class keyword. Class doesn’t allocate memory when it is created. A class can be defined using class keyword.

Viewing 0 reply threads