gpt4 book ai didi

d - 如何使用字符串作为键和数组作为值声明和初始化关联数组

转载 作者:行者123 更新时间:2023-12-04 11:23:42 26 4
gpt4 key购买 nike

我是 D 新手。
我正在寻找这个 C++ 声明的等价物

typedef std::vector<std::string> the_value;
std::map<std::string,the_value> the_table;

最佳答案

你可能想要这样的东西:

string[][string] the_table;

例子:
import std.stdio;

void main(string[] args)
{
string[][string] the_table = ["k1" : ["v1", "v2"], "k2" : ["v3", "v4"]];
writeln(the_table);
}

关于d - 如何使用字符串作为键和数组作为值声明和初始化关联数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24092688/

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