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…
一条语句判断数x是否2的n次幂
return !(x & (x - 1));
求取十进制数字元素1的个数
int fun(int x) { int count 0; int i, j, k; /方法2 负数不可计算,需要改进/ while (x ! 0){ if (x & 1 1) count; x x >> 1; } /方法1/ while (x …