c++ 将 const 对象引用传递给函数

c++ passing a const object reference to a function(c++ 将 const 对象引用传递给函数)
本文介绍了c++ 将 const 对象引用传递给函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

错误:将 'const QByteArray' 作为 'QByteArray& 的 'this' 参数传递QByteArray::append(const QByteArray&)' 丢弃限定符 [-fpermissive]

error: passing 'const QByteArray' as 'this' argument of 'QByteArray& QByteArray::append(const QByteArray&)' discards qualifiers [-fpermissive]

因为在作为函数参数传递时使对象为 const 是一种惯例,所以我已经做到了.但现在我得到一个错误!,我不想让函数保持不变,因为我必须将 qbyte 数组中的数据转换为短格式,然后将其附加到另一个数组中.

since it is a convention to make objects const while passing as function arguments i have done it. but now i am getting an error!!, i dnt want to make the function constant as i have to convert data in qbyte array into short and then append it another array.

QByteArray ba((const char*)m_output.data(), sizeof(ushort));
    playbackBuffer.append(ba);

我确实需要将这个数组传递到 playbackbuffer;
它在 playbackBuffer.append(ba);

I really need to pass this array into playbackbuffer;
It is giving me an error on playbackBuffer.append(ba);

请帮忙
提前致谢

please help
thanks in advance

推荐答案

这意味着您正在对 const 成员调用非 const 成员函数.据推测,您的 append 函数会修改字节数组.使用 const 引用,您不应该进行修改.

This means you are calling a non-const member function on a const member. Presumably, your append function modifies the byte array. With a const reference, you shouldn't be modifying.

这篇关于c++ 将 const 对象引用传递给函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

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

相关文档推荐

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?(易失性成员变量与易失性对象?)