1,一个普通类的一个成员函数可以成为模板成员函数么?
答案是可以的,实例如下
#include
#include
using namespace std;
class printit {
public:
printit(ostream &os) :_os(os) {
}
template
void print(const elemtype& elem, char delimiter = '\n') {
_os << elem << delimiter;
}
private:
ostream & _os;
};
int main()
{
printit to_standard_out(cout);
to_standard_out.print("hello");
to_standard_out.print(1024);
string my_string("this is a string!");
to_standard_out.print(my_string);
getchar();
return 0;
}
//输出
hello
1024
this is a string!
2,一个模板类的一个成员函数可以是一个别的类型的模板成员函数么?
答案也是可以的,实例如下
#include
#include
using namespace std;
template
class printit {
public:
printit(outstream &os) :_os(os) {
}
// 虽然_os可以为各种类型,但这里只能为ostream
template
void print(const elemtype& elem, char delimiter = '\n') {
_os << elem << delimiter;
}
private:
outstream & _os;
};
int main()
{
printit to_standard_out(cout);
to_standard_out.print("hello");
to_standard_out.print(1024);
string my_string("this is a string!");
to_standard_out.print(my_string);
getchar();
return 0;
}
//输出
hello
1024
this is a string!