gpt4 book ai didi

c++ - 我们可以有一个虚拟静态方法吗? (c++)

转载 作者:IT老高 更新时间:2023-10-28 12:29:15 31 4
gpt4 key购买 nike

Possible Duplicate:
C++ static virtual members?

我们可以有一个虚拟静态方法(在 C++ 中)吗?我试图编译以下代码:

#include <iostream>
using namespace std;

class A
{
public:
virtual static void f() {cout << "A's static method" << endl;}
};

class B :public A
{
public:
static void f() {cout << "B's static method" << endl;}
};

int main()
{
/* some code */
return 0;
}

但是编译器说:

member 'f' cannot be declared both virtual and static

所以我猜答案是否定的,但为什么呢?

谢谢,罗恩

最佳答案

没有。 static 在类中的函数上表示该函数不需要对象来操作。 virtual 表示实现取决于调用对象的类型。对于静态,没有调用对象,因此在同一个函数上同时拥有 staticvirtual 没有意义.

关于c++ - 我们可以有一个虚拟静态方法吗? (c++),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7227236/

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