I can see many UML example like above diagram. I can understand that
- Class A has navigability to B with multiplicity of 10. But I can't understand that
- Class B has no navigability to A but has multiplicity of 5..7. Is it possible has multiplicity wihtout navigability in UML?
I can implement case 1 like below.
class A {
public:
B b[10];
};
But how can I implement case 2? No navigability but has multiplicity? I am totally confused of case 2. What am I missing?