gpt4 book ai didi

c++ - __declspec(property) 和虚函数

转载 作者:太空狗 更新时间:2023-10-29 22:54:01 25 4
gpt4 key购买 nike

为什么会出现以下行为?这是错误还是正常行为? (已使用 Visual Studio 2013 和 2017 进行检查)似乎使用虚函数作为 getter 或 setter 可能无法按预期工作!

class A
{
public:
__declspec(property(put = SetWidth)) int width;

virtual void SetWidth(int value)
{
printf("A");
}
};

class B : public A
{
public:
virtual void SetWidth(int value) override
{
printf("B");
}
};

int main()
{
B b1;
B* b2 = new B();

b2->width = 4; // prints B
b1.width = 4; // prints A. why? it should print B!!!
(*(&b1)).width = 4; // prints B
(*b2).width = 4; // prints B

return 0;
}

最佳答案

尝试使用调度函数:

class A
{
public:
__declspec(property(put = SetWidth)) int width;

void SetWidth(int value)
{
SetWidthImpl(value);
}

private:
virtual void SetWidthImpl(int value)
{
printf("A");
}
};

class B : public A
{
private:
void SetWidthImpl(int value) override
{
printf("B");
}
};

这将减轻错误,直到它被处理。

关于c++ - __declspec(property) 和虚函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57910453/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com