how we can use one class, which is inside into another class as property? i want only theoratical explanation and one small example.
|
|
|||||
|
|
|
You mean a nested class used as a type of a property? As long as the access modifier of the property is at most as restrictive as the type of the property, you can do this. Simply, you should be able to access the type if you can see the property. |
||
|
|
|
|
|
||
|
|
|
|
You can use a nested type as a property, but if they're within the same class they can't have the same name:
|
||
|
|
|
|
Class B is nested inside Class A and we have a property BProperty in Class A which gives an instance of Class B.
|
||
|
|
|
|
Suppose that you have a class (model) that is a way to reach to other classes. So you should have a definition (property) of those classes in the model. I use this theory in my applications. You can imagine the model as father of a big family who can order to others to do specific tasks.
|
|||
|
|
|
|
You mention setting up relations between This could be one-to-one for private tuition, or it could be one-to-many if the students attend classes with the teachers, or it could be many-to-many if students attend several classes. By the way, tell your teacher this is a bad example to set, because it's so ambiguous, and because the word "classes" is a nightmare domain term given the existing meaning of the word |
||
|
|
