Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
package routines;
public class forum7741 {
static java.util.Map<String, Integer> map = new java.util.HashMap<String, Integer>();
public static int getCount(String RCRName) {
int count = 0;
if (map.get(RCRName) == null) {
map.put(RCRName, 1);
count = 1;
} else {
count = map.get(RCRName) + 1;
map.put(RCRName, count);
}
return count;
}
}