在下面的示例代码中,我需要将结构向量传递给函数。
class A {
public:
struct mystruct {
mystruct (int _label, double _dist) : label(_label), dist(_dist) {}
int label;
double dist;
};
}
我将向量声明如下:
vector<A:: mystruct > mystry;
现在在这个类“A”中有一个如下的函数。
myfunc ( vector<mystruct> &mystry );
如何将结构向量传递给我的“myfunc”?