The difference between Classes, Objects, and Instances

前端 未结 16 2170
耶瑟儿~
耶瑟儿~ 2020-11-22 05:32

What is a class, an object and an instance in Java?

16条回答
  •  忘掉有多难
    2020-11-22 06:31

    A class is a blueprint that is needed to make an object(= instance).

    The difference between an object and an instance is, an object is a thing and an instance is a relation.

    In other words, instance describes the relation of an object to the class that the object was made from.

提交回复
热议问题