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;
それを機能させるには、メインの上でテンプレートを宣言する必要があります
template <class T> int main()
次のエラーが表示されます。
LNK2019:関数 _ _tmainCRTStartupで参照されている未解決の外部シンボルmain
mainテンプレート化しないでください。
main
代わりに、TinList<serviceInfo<T>>を実際の型に置き換える必要があります。リストにさまざまな種類の を含める場合はserviceInfo<T>、いくつかのリストを作成します。
T
List<serviceInfo<T>>
serviceInfo<T>