Skip to content

Instantly share code, notes, and snippets.

@hofiorg
Last active May 10, 2016 13:16
Show Gist options
  • Save hofiorg/7f3da714e877a4e52f2021b0869b7ff0 to your computer and use it in GitHub Desktop.
Save hofiorg/7f3da714e877a4e52f2021b0869b7ff0 to your computer and use it in GitHub Desktop.
Java - Variable Arguments
void function(Object... args) {
for(Object arg : args) {
// ---
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment