我想存储一定数量的信息,其中包含1个字符串和9个双打信息。这个信息将属于一个“项目”,所以我想按名称排序,因此我决定把它放入一对对矢量,其中第一部分是名称,第二部分是双打数组。所以我可以轻松地对它进行排序并轻松访问它们。
我有一个带有静态私有数据成员“myVector”的C ++类
代码如下所示:
class MyClass : public OtherClass{
private:
static vector< pair<string, double[9]> > myVector;
public:
MyClass(void);
~MyClass(void);
};
vector< pair<string, double[9]> > MyClass::myVector;
问题在于,在本课程的.cpp中,当我尝试执行以下操作时:
myVector.push_back(make_pair(sName, dNumericData));
其中sName是string类型的变量,而dNumericData是double数组大小为9的变量,我收到错误说:
2 IntelliSense: no instance of overloaded function "std::vector<_Ty, _Alloc>::push_back [with _Ty=std::pair<std::string, double [9]>, _Alloc=std::allocator<std::pair<std::string, double [9]>>]" matches the argument list
argument types are: (std::pair<std::basic_string<char, std::char_traits<char>, std::allocator<char>>, double *>)
object type is: std::vector<std::pair<std::string, double [9]>, std::allocator<std::pair<std::string, double [9]>>>
关于如何做到这一点的任何想法?
答案 0 :(得分:0)
dNumericData
衰减到指针,因此参数类型不匹配。您可以将std::array<>
用于对类型和dNumericData
。
答案 1 :(得分:0)
我会创建一个结构或类而不是使用std :: pair:
struct MyStuff {
string name;
array<double, 9> values; // use float unless you need so much precision
MyStuff(string name_, array<double, 9> values_) : name(name_), values(values_) {}
};
vector<MyStuff> v;
v.emplace_back(MyStuff("Jenny", {{8,6,7,5,3,0,9}}));