gpt4 book ai didi

c++ - 初始化列表作为 operator[] 的参数

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:38:46 27 4
gpt4 key购买 nike

这个问题与讨论的问题有关here .

我尝试使用初始化列表来创建要传递给 operator[] 的参数。

#include <string>
#include <vector>

struct A {

std::string& operator[](std::vector<std::string> vec)
{
return vec.front();
}

};

int main()
{
// ok
std::vector<std::string> vec {"hello", "world", "test"};

A a;
// error: could not convert '{"hello", "world", "test"}' to 'std::vector...'
a[ {"hello", "world", "test"} ];
}

我的编译器 (GCC 4.6.1) 提示:

g++ -std=c++0x test.cpp
test.cpp: In function ‘int main()’:
test.cpp:20:8: error: expected primary-expression before ‘{’ token
test.cpp:20:8: error: expected ‘]’ before ‘{’ token
test.cpp:20:8: error: expected ‘;’ before ‘{’ token
test.cpp:20:35: error: expected primary-expression before ‘]’ token
test.cpp:20:35: error: expected ‘;’ before ‘]’ token

这应该是有效的 C++11 吗?

有趣的是,当使用 operator() 而不是 operator[] 时它起作用了。

最佳答案

是的,它是有效的 C++11,应该可以在任何兼容的编译器中工作。

请注意,gcc 对 C++11 的支持还很不成熟,此代码示例无法在任何 4.6 版本中编译,只能在 4.7 svn 快照版本中编译。

关于c++ - 初始化列表作为 operator[] 的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8786927/

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