class Base
{
public:Base(){this->m_A 100;}void func(){cout << "Base中的Func调用" << endl;}void func(int a){cout << "Base中的Func(int a)调用" << endl;}int m_A;
};
class Son : public Base
{
public:Son(){this-&g…
//普通函数 和 函数模板 区别
int myPlus(int a, int b)
{return a b;
}template<class T>
T myPlus2(T a, T b)
{return a b;
}void test01()
{int a 10;int b 20;char c c;cout << myPlus(a, c) << endl; //隐式类型转换 将 char c转为 int类型//myP…
1.int * p NULL;和*p NULL的区别
1 .int * p NULL
int *pNULL;定义一个指针变量p,其指向的内存里面保存的是int类型的数据;再定义变量p的同时把p的值设置为0x00000000, 而不是把*p的值设置为0x00000000
2.*p NULL
int i 10&am…
#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;template<class T>
class Base
{T m_A; //子类创建时候 必须要知道T的类型,才能给父类中的m_A分配内存
};template<class T1 , class T2>
class Son :public Base<T2…