Created
October 8, 2017 18:59
-
-
Save tarikguney/d293a59ab9f241bd70fca948ba924fc0 to your computer and use it in GitHub Desktop.
Composition vs. Aggregation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Account { | |
private Profile _profileInfo; | |
private Login _loginInfo; | |
public Account(Profile profileInfo, Login loginInfo){ | |
_profile = profileInfo; | |
_loginInfo = loginInfo; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Account { | |
private Profile _profileInfo; | |
private Login _loginInfo; | |
public Account(){ | |
_profile = new Profile(); | |
_loginInfo = new Login(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment