import com.hftcollections.HFTHashMap; public class HFTExample { public static void main(String[] args) { HFTHashMap<String, Integer> hftMap = new HFTHashMap<>(); hftMap.put("Apple", 100); hftMap.put("Banana", 50); int appleQuantity = hftMap.get("Apple"); int bananaQuantity = hftMap.get("Banana"); System.out.println("Apple quantity: " + appleQuantity); System.out.println("Banana quantity: " + bananaQuantity); } }


上一篇:
下一篇:
切换中文