类模板与函数模板区别主要有两点:

    1. 类模板没有自动类型推导的使用方式
    2. 类模板在模板参数列表中可以有默认参数

    示例:

    1. #include <string>
    2. //类模板
    3. template<class NameType, class AgeType = int>
    4. class Person
    5. {
    6. public:
    7. Person(NameType name, AgeType age)
    8. {
    9. this->mName = name;
    10. this->mAge = age;
    11. }
    12. void showPerson()
    13. {
    14. cout << "name: " << this->mName << " age: " << this->mAge << endl;
    15. }
    16. public:
    17. NameType mName;
    18. AgeType mAge;
    19. };
    20. //1、类模板没有自动类型推导的使用方式
    21. void test01()
    22. {
    23. // Person p("孙悟空", 1000); // 错误 类模板使用时候,不可以用自动类型推导
    24. Person <string ,int>p("孙悟空", 1000); //必须使用显示指定类型的方式,使用类模板
    25. p.showPerson();
    26. }
    27. //2、类模板在模板参数列表中可以有默认参数
    28. void test02()
    29. {
    30. Person <string> p("猪八戒", 999); //类模板中的模板参数列表 可以指定默认参数
    31. p.showPerson();
    32. }
    33. int main() {
    34. test01();
    35. test02();
    36. system("pause");
    37. return 0;
    38. }

    总结:

    • 类模板使用只能用显示指定类型方式
    • 类模板中的模板参数列表可以有默认参数