📜  缺少类模板的 c++ 参数列表 - C++ 代码示例

📅  最后修改于: 2022-03-11 14:44:53.213000             🧑  作者: Mango

代码示例1
#include "LinkedArrayList.h"

template
void LinkedArrayList::insert (int index, const ItemType& item)
{}

template
ItemType LinkedArrayList::remove (int index)
{return ItemType();}

template
int LinkedArrayList::find (const ItemType& item)
{return -1;}