gpt4 book ai didi

c# - 继承构造函数 : Converting from C# to C++

转载 作者:太空狗 更新时间:2023-10-29 19:40:55 25 4
gpt4 key购买 nike

我有 C# 背景,我会像这样编写一个类和构造函数:

public class Grunt : GameObject
{
public Grunt()
: base()
{
// do stuff
}
}

如何在 C++ 中编写构造函数继承?在 header 和源代码中。我知道您没有要使用的“base”关键字,但语法是否相同?

最佳答案

class Grunt : public GameObject
{
Grunt()
: GameObject() // Since there are no parameters to the base, this line is actually optional.
{
// do stuff
}
}

并强烈考虑在 The Definitive C++ Book Guide and List 获得一本优秀的 C++ 书籍

关于c# - 继承构造函数 : Converting from C# to C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7665132/

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