Last active
March 27, 2018 12:28
-
-
Save ohjongsung/a97190aacc0b6dc26e7804e9d2c626f0 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
class GenericMethod { | |
public static <T> int getListSize(List<T> list) { | |
int count = 0; | |
for (T t : list) { | |
count++; | |
} | |
return count; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment