我正在尝试编写 STL 的派生类,set<>
但发生了链接错误。
头文件Set.h
:
#pragma once
#include <set>
using namespace std;
template <class Ty>
class Set : public set<Ty> {
public:
Set(void);
virtual ~Set(void);
};
辅助源文件Set.cpp
:
#include "Set.h"
template <class Ty>
Set<Ty>::Set(void) {}
template <class Ty>
Set<Ty>::~Set(void) {}
主程序:
#include <iostream>
#include "../myLibrary/Set.h"
#pragma comment(lib, "../x64/Debug/myLibrary.lib")
using namespace std;
int main() {
Set<int> s;
s.insert(1); s.insert(2); s.insert(3);
for(Set<int>::const_iterator it = s.begin(); it!=s.end(); it++)
wcout << *it << endl;
return 0;
}
这引发
Set.obj : *warning* LNK4221:
和
_Entry_myLibrary_TEST.obj :error LNK2019: "public: virtual __cdecl Set<int>::~Set<int>(void)" (??1?$Set@H@@UEAA@XZ)