c++ template
主要说下模板的声明和实现分离
如果不用std::variant
的话,要实现模板声明和实现分离,需要在头文件中声名,然后在cpp里定义模板,然后要继续在cpp里声明所有要用的类型
1
2
3
4
5
6
7
8
9
10
11
12
13
// header.h
template <typename T>
void show(T t);
// header.cpp
template <typename T>
void show(T t) {
std::cout << t << std::endl;
}
template void show<int>(int);
template void show<std::string>(std::string);
template void show<const char*>(std::vector<int>);
另外注意一下"xxxx"s
的用法, 等价在构造一个string,并且这个string不会被中间的\0截断
This post is licensed under CC BY 4.0 by the author.