Object graph: Difference between revisions

Content deleted Content added
Erik9bot (talk | contribs)
Formatting
Line 9:
Object graph is a term often used with object-oriented applications. Object-oriented applications contain complex webs of interrelated objects. Objects are linked to each other by one object either owning or containing another object or holding a reference to another object. This web of objects is called an object graph.
 
Example: A → {B, C}, B → {D}, C → {A, D}, D → {B, A}.
Eg
A -> B, C
B -> D
C -> A, D
D -> B, A
 
== See also ==