需要帮助解决错误C2664

时间:2015-03-12 02:27:54

标签: c++ pointers casting

我有以下代码给出了这个错误

  

main.cpp(41):错误C2664:' std :: pair std :: make_pair(_Ty1,_Ty2)' :无法从' Handle'转换参数1到' unsigned int&'

我的示例程序是

#include <vector>
#include <utility>
typedef unsigned int u32;
typedef u32 Handle;

struct File
{
    File()
        : ch(0),
        pageIdx(0)
    {
    }
    Handle ch : 8;
    u32 pageIdx;
};

int main() {
    std::vector<std::pair<Handle, u32> > toTrim;
    toTrim.reserve(64);
    File* m_pFirstPage = new File();
    File* pRef = m_pFirstPage;
    toTrim.push_back(std::make_pair(pRef->ch,pRef->pageIdx));
    return 0;
}

当我尝试静态演员,即

toTrim.push_back(std::make_pair(static_cast<unsigned int>(pRef->ch), pRef->pageIdx));

我收到以下错误

  

main.cpp(41):错误C2664:&#39; std :: pair std :: make_pair(_Ty1,_Ty2)&#39; :无法从&#39; unsigned int&#39;转换参数1到&#39; unsigned int&amp;&#39;

有人可以帮我解决,并解释我做错了什么。

1 个答案:

答案 0 :(得分:0)

正在发生的是您使用: 8表示法指定位字段。

  

更多信息:   http://www.tutorialspoint.com/cprogramming/c_bit_fields.htm

这会在{8}的句柄变量上创建一个伪字段,而不是typedef u32 Handle定义的32。 std::make_pair要求通过引用传递它的参数。

由于Handle ch : 8Handle的类型不同,因此您无法通过引用传递它,因为被视为未定义的行为会转换为通过引用传递的变量。

  

更多信息:   How to cast a variable member to pass it as reference argument of a function

如果您需要: 8字段,可以使用额外的变量来正确创建对。

#include <vector>
#include <utility>
typedef unsigned int u32;
typedef u32 Handle;

struct File
{
    File()
    : ch(0),
    pageIdx(0)
    {
    }
    Handle ch : 8; //Different type than just Handle
    u32 pageIdx;
};

int main() {
    std::vector<std::pair<Handle, u32> > toTrim;
    toTrim.reserve(64);
    File* m_pFirstPage = new File();
    File* pRef = m_pFirstPage;
    unsigned int ch_tmp = pRef->ch; //<-Extra variable here
    toTrim.push_back(std::make_pair(ch_tmp, pRef->pageIdx));
    return 0;
}