前端之家收集整理的这篇文章主要介绍了
c – sizeof(* this)和struct继承,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
假设我有如下结构:
struct ParentStruct
{
virtual void XYZ()
{
getSize(sizeof(*this));
}
int memberX;
}
另一个继承父结构的结构:
struct ChildStruct : public ParentStruct
{
int memberY;
int memberZ;
}
假设sizeof(int)== 4,当从子结构调用时,是否可以将值12传递给函数getSize()(我当前得到的值为4)?
我宁愿不必在所有子结构中覆盖XYZ(),因为我会有很多子结构.
您可以使用模板来
解决此问题:
template <typename Child>
struct ParentStruct
{
virtual void XYZ()
{
getSize(sizeof(Child));
}
int memberX;
}
struct ChildStruct : public ParentStruct<ChildStruct>
{
int memberY;
int memberZ;
}
通过这种方式,您可以告诉父结构其子项是谁 – 它不是一个超级干净的解决方案,但它可以完成工作并避免重复getSize代码.
原文链接:https://www.f2er.com/c/111079.html