Skip to content

Instantly share code, notes, and snippets.

@ohjongsung
Last active March 27, 2018 12:28
Show Gist options
  • Save ohjongsung/a97190aacc0b6dc26e7804e9d2c626f0 to your computer and use it in GitHub Desktop.
Save ohjongsung/a97190aacc0b6dc26e7804e9d2c626f0 to your computer and use it in GitHub Desktop.
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