gpt4 book ai didi

python - 如何在 C++ 类中使用静态关键字来模拟 Python 中 @classmethod 的行为?

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

我在某处读到 Python 中的 @classmethod 类似于 C++ 中的静态成员函数。但是 C++ 中等效的 cls 参数是什么?我该如何传递它?

下面是一段使用继承和@classmethod的Python代码,

class Parent():
def __init__(self, name):
self._name = name
@classmethod
def produce(cls, name):
return cls(name)
def say_my_name(self):
print("I am parent", self._name)

class Child(Parent):
def say_my_name(self):
print("I am child", self._name)

p1 = Parent("One")
p1.say_my_name()
p2 = Parent.produce("Two")
p2.say_my_name()

p1 = Child("One")
p1.say_my_name()
p2 = Child.produce("Two")
p2.say_my_name()

现在我陷入了如下不完整的 C++ 代码中

class Parent
{
protected:
std::string name;
public:
Parent(const std::string& name): name{name} {};

// Can I not use static in the next statement?
// Parent is already hard-coded, what's the cls in C++?
static Parent produce(const std::string& name) const
{
return Parent {name};
}
void say_my_name() const
{
std::cout << "I am parent " << name << "\n";
}
};

如何使用 C++ 模拟我的 Python 代码?

最佳答案

return Parent {name}; 是正确的。但是,静态成员函数不能是 const,因为没有调用它的对象。

在 C++ 中没有内置的方法来指定“当前类的类型”。您只需要再次编写 Parent 即可。不幸的是,这意味着如果您更改类的名称,您还必须更改类实现中的所有相关事件。

关于python - 如何在 C++ 类中使用静态关键字来模拟 Python 中 @classmethod 的行为?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40349586/

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