Perl 中的哈希映射
我正在使用 FRONTIER::CLIENT 模块在 Perl 中编写客户端 API。我试图在 Perl 中执行类似的操作:
HashMap<Integer, String> message = (HashMap<Integer, String>)client.execute("APIWrapper.login");
System.out.println(message.get(1000));
How do I Implement the same idea in Perl?
I am writing a client API in Perl using FRONTIER::CLIENT module. I am trying to do similar like the following in Perl:
HashMap<Integer, String> message = (HashMap<Integer, String>)client.execute("APIWrapper.login");
System.out.println(message.get(1000));
How do I implement the same idea in Perl?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Hashmap 是原生 Perl 数据结构。任何用散列符号 % 声明的变量都是存储键值对的散列。请参阅有关 Perl 数据类型的文档。另请参阅 Perl 数据结构手册。
编辑
查看此示例
输出:
Hashmaps are a native perl data structure. Any variable declared with the hash symbol % is a hash storing key value pairs. See this documentation on Perl data types. Also see the Perl Data Structures Cookbook.
Edit
See this example
Outputs:
以下代码是在 Perl 中使用哈希的示例:
The following code is an example of using a hash in Perl: