Java tutorial
//package com.java2s; //License from project: Apache License import java.util.Collection; import java.util.Map; public class Main { public static int getSize(final Collection<?> collection) { if (collection == null) { return 0; } return collection.size(); } public static int getSize(final Map<?, ?> map) { if (map == null) { return 0; } return map.size(); } }