gpt4 book ai didi

C++ 纯虚 const 成员函数

转载 作者:IT老高 更新时间:2023-10-28 14:00:37 25 4
gpt4 key购买 nike

如何声明一个也是 const 的纯虚成员函数?我可以这样吗?

virtual void print() = 0 const;

还是这样?

virtual const void print() = 0;

最佳答案

来自 Microsoft Docs :

To declare a constant member function, place the const keyword after the closing parenthesis of the argument list.

应该是这样的:

virtual void print() const = 0;

关于C++ 纯虚 const 成员函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13275583/

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