On this webpage which shows how to draw a class diagram, why is the arrow for association pointing from order to customer, and not from customer to order?
相关问题
- What uses more memory in c++? An 2 ints or 2 funct
- How Does WebSphere Choose the Classloading Order i
- System sequence diagram - Can system request input
- Does Visual Studio 2010 Professional support UML m
- Store data and global variables using the Applicat
相关文章
- NameError: name 'self' is not defined, eve
- .NET - how to make a class such that only one othe
- Issue creating ImmutableMap with Class<?> as
- Create image of Neural Network structure
- How to return new instance of subclass while initi
- C++ increment operator
- Code Iris plugin on Android Studio
- Python object containing an array of objects being
It's a dependency, which is a special weak type of association. It means that for an order to exist, there must exist a customer at some point in time. There may be some point in the lifecycle of "order" where this requirement is not enforced.