queuelt;stringamp;gt; errors(队列lt;字符串amp;gt;错误)
问题描述
我有一个有趣的情况.
我有一堆包含字符串的结构.
I have a bunch of structs that hold a string.
struct foo
{
string mStringName;
}
vector<foo> mFoos;
我还有一个字符串引用队列
I also have a queue of string references
queue<string&> mStringQueue;
最后,我有一个接受 const 字符串的函数&
And finally, I have a function that accepts a const string&
void Bar(const string&);
情况是这样的.
//...in some loop
currentFoo = mFoos[index];
// Queue up the string name.
mStringQueue.push(currentFoo.mStringName);
//...Later on, go through our queue and pass each one to the function.
for (int queueIndex = 0; queueIndex < mStringQueue.size(); queueIndex++)
{
Bar(mStringQueue.front());
mStringQueue.pop();
}
这给了我以下编译错误:
This gives me the following compile error:
错误 C2664: 'std::queue<_Ty>::push' : 无法将参数 1 从 'String' 转换为 'String &(&)'
error C2664: 'std::queue<_Ty>::push' : cannot convert parameter 1 from 'String' to 'String &(&)'
我在思考字符串引用之类的问题时遇到了麻烦,因此我们将不胜感激任何帮助
I'm definitley having trouble wrapping my mind around string references and whatnot, so any help would be greatly appreciated
推荐答案
引用类型不符合标准容器中可以使用的类型的要求.特别是它们是不可复制的.请注意,虽然引用的对象可以复制或不可复制,但引用本身永远不可复制.
Reference types do not meet the requirements of types that can be used in standard containers. In particular they are not copyable. Note that while the referenced object can be copyable or not, the reference itself is never copyable.
另一种方法是存储可复制的指针.
The alternative is to store pointers, which are copyable.
这篇关于队列<字符串&>错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:队列<字符串&>错误
基础教程推荐
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- CString 到 char* 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 初始化列表*参数*评估顺序 2021-01-01
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
