头文件中函数原型的语法

发布于 2024-10-06 14:24:04 字数 265 浏览 7 评论 0原文

考虑我有以下函数原型:

void MyFunction(int MyParameter);

具有以下定义:

void MyFunction(int MyParameter)
{
    // Do stuff here.
}

如果我有头文件(没有 main 函数),它们应该放在哪里)带有命名空间?原型是否位于名称空间内,而定义位于名称空间之外?还是两人都进去?

Consider I have the following function prototype:

void MyFunction(int MyParameter);

With the following definition:

void MyFunction(int MyParameter)
{
    // Do stuff here.
}

Where should they each be put if I have a header file (no main function) with a namespace? Does the prototype go in the namespace and the definition outside it? Or do they both go in?

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

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

发布评论

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

评论(3

打小就很酷 2024-10-13 14:24:04

如果您选择使用命名空间,则两者都应位于 :

.h :

namespace MyNameSpace {
void MyFunction(int MyParameter);
}

.cpp 内:

void MyNameSpace::MyFunction(int MyParameter)
{
    // Do stuff here.
}

If you choose to have a namespace, both should be inside :

.h :

namespace MyNameSpace {
void MyFunction(int MyParameter);
}

.cpp :

void MyNameSpace::MyFunction(int MyParameter)
{
    // Do stuff here.
}
匿名。 2024-10-13 14:24:04

如果您的原型不在命名空间中,则不必将定义放入命名空间中。如果原型位于命名空间中,则定义也应位于同一命名空间中。

If your prototype is not in the namespace, then you do not have to put the definition in the namespace. If the prototype is in a namespace, the definition should be in the same namespace.

a√萤火虫的光℡ 2024-10-13 14:24:04

它们都必须位于名称空间中

They both have to be in the namespace

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