一个小问题
C++中的模板类定义以后怎么在主函数中调用??
先用类定义一个对象 在通过这个对象访问类内成员
比如类class String
{
public:
Fun()
{
...
}
....
}
在主函数中定义对象 String a;
a.Fun()//调用