gpt4 book ai didi

c++ - 轻松初始化 std::strings 的 std::list?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:06:09 24 4
gpt4 key购买 nike

在 C++0x 中,我想要的是:

std::list<std::string> colours = {"red", "blue", "green", "grey", "pink", "violet"};

标准的非 0x C++ 中最简单的方法是什么?

最佳答案

char const *x[] = {"red", "blue", "green", "grey", "pink", "violet"};
std::list<std::string> colours(x, x + sizeof(x) / sizeof(*x));

或者您可以使用 boost 库和函数,例如 list_of("a")("b")...

关于c++ - 轻松初始化 std::strings 的 std::list?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3726586/

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