我有一个用'float2,unsigned int'对模板化的向量,如:
std::vector<std::pair<float2, unsigned int>> myVec;
然后我试图在矢量中添加这样一对:
unsigned int j = 0;
float2 ab = {1.0, 2.0};
myVec.push_back(std::make_pair(ab, j));
这是我期望它应该工作的方式,但是当我尝试编译它时,我得到错误:
1>C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\utility(163): error C2536: 'std::_Pair_base<_Ty1,_Ty2>::std::_Pair_base<_Ty1,_Ty2>::first' : cannot specify explicit initializer for arrays
1> with
1> [
1> _Ty1=float2 ,
1> _Ty2=unsigned int
1> ]
1> C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\utility(166) : see declaration of 'std::_Pair_base<_Ty1,_Ty2>::first'
1> with
1> [
1> _Ty1=float2 ,
1> _Ty2=unsigned int
1> ]
1> C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\utility(247) : see reference to function template instantiation 'std::_Pair_base<_Ty1,_Ty2>::_Pair_base<float(&)[2],unsigned int&>(_Other1,_Other2)' being compiled
1> with
1> [
1> _Ty1=float2 ,
1> _Ty2=unsigned int,
1> _Other1=float (&)[2],
1> _Other2=unsigned int &
1> ]
1> myTest.cpp(257) : see reference to function template instantiation 'std::pair<_Ty1,_Ty2>::pair<float2(&),unsigned int&>(_Other1,_Other2)' being compiled
1> with
1> [
1> _Ty1=float2,
1> _Ty2=unsigned int,
1> _Other1=float2 (&),
1> _Other2=unsigned int &
1> ]**strong text**
将此数据类型添加到配对保持向量的正确方法是什么?
float2类型定义为:
typedef float float2[2];
答案 0 :(得分:5)
C ++数组几乎在每次使用时都会衰减指针。更改float2
:
typedef std::array<float, 2> float2;
或者,如果您还没有C ++ 11,则可以使用boost::array
。
答案 1 :(得分:2)
这不起作用,因为数组不能像常规值一样被复制。
理想情况下,您会使用其他内容 - 可能是std::array
或将float2
放在结构中。
如果您必须拥有这种类型的一对,那么您可以这样做:
unsigned int j = 0;
float2 ab = {1.0, 2.0};
std::pair<float2,int> new_element;
new_element.first[0] = ab[0];
new_element.first[1] = ab[1];
new_element.second = j;
myVec.push_back(new_element);
如果你必须这么做,你可以做一个功能。这是一个完整的例子:
#include <vector>
#include <utility>
typedef float float2[2];
std::pair<float2,unsigned int>
make_pair(const float2 &first,unsigned int second)
{
std::pair<float2,unsigned int> result;
result.first[0] = first[0];
result.first[1] = first[1];
result.second = second;
return result;
}
int main(int,char**)
{
unsigned int j = 0;
float2 ab = {1.0, 2.0};
std::vector<std::pair<float2, unsigned int> > myVec;
myVec.push_back(make_pair(ab, j));
return 0;
}