gpt4 book ai didi

JAVA字典作为参数

转载 作者:行者123 更新时间:2023-12-02 10:09:35 28 4
gpt4 key购买 nike

现在我有了一本这样的字典

Dictionary dict = new Hashtable();
dict.put("shipno", item.getShipNumber());
dict.put("addr", item.getFinalAddr());
dict.put("receiver", item.getReceiverName());
dict.put("phone", item.getReceiverPhone());

我要将这个字典作为参数传递给 funcion Test(),我应该在 '()' 中放入什么

public static int Test(Dictionary)

这是正确的吗?谢谢!

最佳答案

在您的代码中,您必须调用此方法:

Dictionary dict = new Hashtable();
dict.put("shipno", item.getShipNumber());

// CAll THIS METHOD
Test(dict);

在你的方法中你可以获得这些数据:

// YOUR METHOD, where "dict" is passed argument/parameter
public static int Test(Dictionary dict) {

}

关于JAVA字典作为参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55099291/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com