队列<字符串&>错误

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.

这篇关于队列&lt;字符串&amp;&gt;错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Rising edge interrupt triggering multiple times on STM32 Nucleo(在STM32 Nucleo上多次触发上升沿中断)
How to use va_list correctly in a sequence of wrapper functions calls?(如何在一系列包装函数调用中正确使用 va_list?)
OpenGL Perspective Projection Clipping Polygon with Vertex Outside Frustum = Wrong texture mapping?(OpenGL透视投影裁剪多边形,顶点在视锥外=错误的纹理映射?)
How does one properly deserialize a byte array back into an object in C++?(如何正确地将字节数组反序列化回 C++ 中的对象?)
What free tiniest flash file system could you advice for embedded system?(您可以为嵌入式系统推荐什么免费的最小闪存文件系统?)
Volatile member variables vs. volatile object?(易失性成员变量与易失性对象?)