最后一个方式 模板尚未弄清楚.
我们在写代码的时候,按约定都是把成员数据放到private访问区中,然后在通过相应的函数来存取。那又有什么样的代码可以突破访问权限来直接操作类中private区段中的成员数据呢?
首先,我们想到了指针,对吧~指针可是万能之王,然而也是万恶之源。那我们就先来看看指针如何突破马其诺防线的。
先定义一个测试类
{ }
template<typename T>
void Func(const T&t)// 类中存在一个模板函数
{ }
const int GetValue()
{
return m_nPrivate;
}
};
int *n = (int *)p;
int tmp = 2;
*n = tmp; // 改写其值
cout << x.GetValue() << endl; // 输出为2
}
)
{}
template<typename T>
void Func(const T&t)
{}
const int GetValue()
{
return m_nPrivate;
}
};
}
他的两根手指头很灵活哟。在VC2008成功执行得到。然而他却有两个违背标准的行为:
1)#define 保留字是非法的
2)违反了唯一定义规则(ODR),然而类的底层内存布局没改变,故可行
用#define private public 偷梁换柱
3.骗子方式
}
}
void Test()
{
X x;
cout << x.GetValue() << endl;
x.Func(Y());
cout << x.GetValue() << endl;
}