Last active
March 27, 2018 12:32
-
-
Save ohjongsung/703d5b4c5ee00e506e63d3eaea64c998 to your computer and use it in GitHub Desktop.
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
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