Skip to content

Instantly share code, notes, and snippets.

@ashkrit
Created March 14, 2020 03:29
Show Gist options
  • Save ashkrit/10cc5987c0013b81798794ddfff981ac to your computer and use it in GitHub Desktop.
Save ashkrit/10cc5987c0013b81798794ddfff981ac to your computer and use it in GitHub Desktop.
//Address has priority , first home and then Office
if (p.home != null) {
System.out.println("Contacted at home address " + p.home.address);
return; // Magical return for early exit
}
if (p.office != null) {
System.out.println("Contacted at office address " + p.office.address);
return; // Magical return for early exit
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment