“虚拟”和头文件

发布于 2024-09-29 03:37:37 字数 405 浏览 2 评论 0原文

我有 Foo.hpp 和 Foo.cpp,我想定义一个虚函数

virtual void setValue(int val){
}

以下实现是否正确:

Foo.hpp

#ifndef _FOO
#define _FOO
class Foo{
  public:
    Foo();
    virtual void setValue(int val);
};
#endif

Foo.cpp

Foo::setValue(){

}

我意识到它会如果我将其保留在一个文件中会更容易,但这只是更复杂结构的简化。

I have Foo.hpp and Foo.cpp, i'd like to define a virtual function

virtual void setValue(int val){
}

Would the following implementation be correct:

Foo.hpp

#ifndef _FOO
#define _FOO
class Foo{
  public:
    Foo();
    virtual void setValue(int val);
};
#endif

Foo.cpp

Foo::setValue(){

}

I realise it would be easier if i kept it to one file, but this is just a simplification of a more complex structure.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

失退 2024-10-06 03:37:37

您的示例无法编译,因为您的 cpp 和 hpp 之间的函数签名不同,但您的想法是正确的。如果您的函数为 void,则也无需返回。

Your example won't compile, because the function signatures are different between your cpp and hpp, but you have the right idea. If your function is void, there is no need to return, either.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文