import com.higherfrequencytrading.collections.ConcurrentHashMap;
public class Example {
public static void main(String[] args) {
ConcurrentHashMap<String, Integer> map = new ConcurrentHashMap<>();
map.put("key1", 10);
map.put("key2", 20);
int value = map.get("key1");
}
}