标签:引用类型 class 参数 strong tde cto 指针类型 span inf
1、函数声明为引用类型
int Discover(std::vector<tDeviceInfo>& pDeviceInfo);
2、参数声明为指针类型
std::vector<DeviceData::DeviceInfo>* mDeviceInfo;
3、调用,指针转引用
Discover(*mDeviceInfo);//加上*就是指针转引用
标签:引用类型 class 参数 strong tde cto 指针类型 span inf
原文地址:https://www.cnblogs.com/judes/p/9267002.html