(c++)向模板传递指针

(C++) Passing a pointer into a template

本文关键字:指针 c++      更新时间:2023-10-16

我有两个指针。p1。p2。
P1和p2都指向不同的类。
这些类有一些相似的方法名,
我想调用模板函数两次,以避免重复代码。
下面是我的函数:

template <class T>
void Function(vector<T> & list, T* item, const string & itemName)

看到中间的参数"item"..如果我想更改项目,我的签名应该是这样的吗?

. .还是将其作为
传递T *,项目

. .还是将其作为
传递T * *项目

编译器让很多东西滑动,但是当我去绑定所有东西时,它就坏了。

如何使用指针调用该函数?
选角的事??我什么都试过了:

你应该能够像这样调用你的代码:

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,参见在c++中通过指针传递比通过引用传递有什么好处?

我想知道是否需要通过指针传递item,通过(非const)引用传递list