gpt4 book ai didi

c++ - 丢失 const volatile 限定词

转载 作者:可可西里 更新时间:2023-11-01 16:15:47 25 4
gpt4 key购买 nike

我有一个编译错误:

error C3848: expression having type 'const unicode::endian_swap<T>'
would lose some const-volatile qualifiers in order to call
'unsigned long unicode::endian_swap<T>::operator ()(T &)'

此错误的描述,Here ,并没有真正解释发生了什么。

我无法在较小的示例中重现错误,但我可以展示我的类的基本布局。

template < typename T >
struct endian_swap
{
endian_swap ( void ) {}
T operator () ( T& _val ) const { return _val >> 8 | _val << 8; }
};

template < typename T >
struct test
{
endian_swap< T > _swap;

virtual void do_it ( ) const
{
unsigned short n = 0x1234;
unsigned short * _dest = &n;

*_dest++ = _swap( n ); // <-- Error is here
}
};

添加endian_swap 为成员后弹出错误。实际类派生自 std::codecvt 并安装到 std::locale 中。

有人能给出比上述网站更好的错误解释吗?

编辑:实际代码:

template < typename T, size_t N = sizeof( T ) > struct endian_swap
{
endian_swap ( void ) {};
T operator () ( const T _val ) const { return _val };
};
template < typename T > struct endian_swap< T, 2 >
{
endian_swap ( void ) {}
T operator () ( const T _val ) const { return _val >> 8 | _val << 8; }
};
template < typename T > struct endian_swap< T, 4 >
{
endian_swap ( void ) {};
T operator () ( const T _val ) const { return (_val >> 24) | ((_val & 0x00ff0000) >> 8) | ((_val & 0x0000ff00) << 8) | (_val << 24) };
};

更新:找到了!仔细看上面的模板,看看你是不是也能看出来。

最佳答案

您如何实例化模板。你的实例化 endian_swap使用类型 T , 你传递给它一个 unsigned
short
.除非Tunsigned short , 你需要转换,转换的结果是暂时的,不能绑定(bind)到非常量引用。

您不提供 SSCCE,所以很难说。但是错误您发布的消息是指对 unsigned long unicode::endian_swap<T>::operator ()(T &); 的调用任何一个 endian_swapunsigned long 实例化(其中情况下,通过 unsigned short需要一个临时的),或者您发布的代码不是触发错误的代码。

关于c++ - 丢失 const volatile 限定词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17749063/

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