Skip to content

Instantly share code, notes, and snippets.

@ohjongsung
Last active March 27, 2018 12:32
Show Gist options
  • Save ohjongsung/703d5b4c5ee00e506e63d3eaea64c998 to your computer and use it in GitHub Desktop.
Save ohjongsung/703d5b4c5ee00e506e63d3eaea64c998 to your computer and use it in GitHub Desktop.
List<String> strs = Arrays.asList("a", "b", "c", "d");
List<Integer> ints = Arrays.asList(1, 2, 3, 4, 5, 6);
int size1 = GenericMethod.getListSize(strs);
int size2 = GenericMethod.getListSize(ints);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment