What is object graph in java?

前端 未结 6 1069
轮回少年
轮回少年 2020-12-28 13:54

Whenever I study Garbage Collector I hear the term object Graph. What does it mean exactly?

6条回答
  •  天命终不由人
    2020-12-28 14:14

    As we know Objects are instance of a Class. An Object may have reference to the other object (use of Pointers for addressing). Also these objects may have reference to another object and so on leading into a Hierarchy of Objects references to each other.

    This is an Object Graph.

提交回复
热议问题