Relationship between classes

From: seesaw (seesaw_at_turboweb.com)
Date: 04/29/04


Date: Thu, 29 Apr 2004 04:44:39 GMT

Given class A and class B.

class B instantiated as several global objects, B1, B2...

class A
{
    void AccessB() { B1.MethodInB(); }
};

What relationship between A and B?

How the relationship between A and B represented in uml?

Thanks!