1
vote
1answer
231 views

Relations between classes - both inheritance and composition [closed]

I've a game I'm working on, Snake. I've problem with the relationships between classes and I don't really understand why. I've these three classes: Snake - The snake class. Food - The food which ...
5
votes
6answers
492 views

what kind of relationship is there between a common wall and the rooms that located next to it?

I want to know whats the Relationship between a common wall (that are located In an adjoining room ) and the rooms. As i know the relationship between a room and its walls is Composition not ...
0
votes
2answers
159 views

The has-a relationship and the proper practice

Recently I am doing a coding exercises I need to make my project , and so far I am practicing it with the code below what I want to ask is that, is this a has a relationship? am I doing the right ...
3
votes
3answers
2k views

UML association vs. composition and detail level

Actually, make that a couple of amateur UML questions! When creating a UML diagram to model some domain concepts and you come across a domain concept that "holds" some information about another ...
2
votes
5answers
256 views

managing relationships between agregated / composited members of a class

I am creating entities for a simulation using aggregation and composition. In the following C++ example: class CCar { CCar( CDriver* pDriver ) { m_pDriver = pDriver; } CDriver* ...
0
votes
1answer
579 views

How do you model a simple composition relationship

Can someone help me understand how best to model a composition relationship? If for instance I have a student whom can have many schedules, I would create roughly: class Student { prop long Pk { ...