我有两个指针。 P1。 P2。
p1和p2都指向不同的类别
这些类有一些类似的方法名称,
我想两次调用模板函数以避免重复代码
这是我的功能:
template <class T>
void Function(vector<T> & list, T* item, const string & itemName)
看到中间参数,“项目”..如果我想要更改项目,我的签名应该如何?
..或者我应该把它作为
通过
T *&amp;项目
..或者我应该把它作为
通过
T **项目
编译器允许很多东西滑动,但是当我去绑定它破坏的所有内容时。
如何使用我的指针调用该函数?
什么关于铸造?我已经尝试了一切:\
答案 0 :(得分:2)
您应该能够像这样调用您的代码:
template <class T>
void Function(std::vector<T> & list, T* item, const std::string & itemName)
{
list.push_back(T());
if (item != NULL)
item->x = 4;
}
struct A
{
int x;
};
struct B
{
double x;
};
A a;
B b;
std::vector<A> d;
std::vector<B> i;
Function(d, &a, "foo");
Function(i, &b, "bar");
请注意,通过引用和指针传递参数的含义略有不同,例如指针可以为NULL,请参阅Are there benefits of passing by pointer over passing by reference in C++?。
我想知道是否希望通过指针传递item
并通过(非常量)引用传递list
。