Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的主目录中有一个模板列表,其中有一个模板类对象。
List<serviceInfo<T>> priceList;
为了让它正常工作,我必须在我的 main 上方声明模板
template <class T> int main()
这会给我以下错误:
LNK2019:函数 _ _tmainCRTStartup中引用的未解析的外部符号main
main永远不应该被模板化。
main
相反,您应该用实际类型替换Tin 。List<serviceInfo<T>>如果您想serviceInfo<T>在列表中有不同类型的,请创建多个列表。
T
List<serviceInfo<T>>
serviceInfo<T>