Skip to content

Instantly share code, notes, and snippets.

@ucguy4u
Last active December 8, 2020 04:53
Show Gist options
  • Save ucguy4u/e779e622dee423e4001dd61bbaa98e60 to your computer and use it in GitHub Desktop.
Save ucguy4u/e779e622dee423e4001dd61bbaa98e60 to your computer and use it in GitHub Desktop.
eg: Association in Java
//eg: Association in Java
class A {
int x = 10;
}
class B {
A a = new A();
// new A()--> This is composition; part in java which is necessary.
// A a --> This is aggregation; part in java which is not necessary.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment