ヘッダ
c++
1#pragma once 2#include <map> 3#include <initializer_list> 4 5namespace Bijection { 6 template <class F, class S> 7 class bijection 8 { 9 private: 10 typename std::map<F, void*> f; 11 typename std::map<S, void*> s; 12 public: 13 bijection(){}; 14 bijection(std::initializer_list<typename std::pair < F, S >> input); 15 void add(typename std::pair<F, S> input); 16 void emplace(F first, S second); 17 F find_first(S input); 18 S find_second(F input); 19 }; 20} 21
ソース
c++
1#include "Bijection.h" 2 3using namespace std; 4namespace Bijection { 5 template<class F, class S> 6 bijection<F, S>::bijection(initializer_list<typename pair < F, S >> input) { 7 for (auto i : input) 8 { 9 add(i); 10 } 11 } 12 template<class F, class S> 13 void bijection<F, S>::add(typename pair<F, S> input) 14 { 15 emplace(input.first, input.second); 16 } 17 template<class F, class S> 18 void bijection<F, S>::emplace(F first, S second) 19 { 20 f[first]; 21 s[second] = &(f.find(first)->first); 22 f[first] = &(s.find(second)->first); 23 } 24 template<class F, class S> 25 F bijection<F, S>::find_first(S input) 26 { 27 return *f.at(input); 28 } 29 template<class F, class S> 30 S bijection<F, S>::find_second(F input) 31 { 32 return *s.at(input); 33 } 34}
メイン
c++
1#include "Bijection.h" 2#include <string> 3using namespace Bijection; 4using namespace std; 5 6int main(void) { 7 bijection<int, string> test; 8 test.emplace(1, "one"); 9}
エラー
エラー LNK2019 未解決の外部シンボル "public: void __thiscall nagisakuya::Bijection::bijection<int,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >::emplace(int,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >)" (?emplace@?$bijection@HV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Bijection@nagisakuya@@QAEXHV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) が関数 _main で参照されました
emplaceを呼び出すときにエラーが発生してるみたいですが、理由がわかりません。
emplaceの中身を全部コメントアウトしても起きるので、宣言に問題があるのではないかと思ってます。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/26 23:12
2020/09/27 00:01
2020/09/27 00:19