-
SSam replied to the topic Difference b/w Object and Class in the forum Java J2EE Programming 6 years, 5 months ago
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…Read more