使用eclipse编译错误

发布于 2024-11-30 23:21:42 字数 436 浏览 0 评论 0原文

在下面的头文件中,我声明了一些函数:

    #ifndef _MY_INT_FUNCTIONS_H_
    #define _MY_INT_FUNCTIONS_H_



    int intFcn (const void *key, size_t table_size);
    void intPrint (const void *key);
    int intCompare (const void *key1, const void *key2);


    #endif // _MY_INT_FUNCTIONS_H_

但我收到一个编译错误:

“在‘size_t’之前预期有声明说明符或‘...’”

关于 int intFcn 函数,

。我使用 eclipse INDIGO 版本。

帮助任何人吗?

In the following header file i declared some functions:

    #ifndef _MY_INT_FUNCTIONS_H_
    #define _MY_INT_FUNCTIONS_H_



    int intFcn (const void *key, size_t table_size);
    void intPrint (const void *key);
    int intCompare (const void *key1, const void *key2);


    #endif // _MY_INT_FUNCTIONS_H_

but i get a compilation error saying:

"expected declaration specifiers or ‘...’ before ‘size_t’"

regarding the int intFcn function.

im using eclipse INDIGO version.

help anyone?

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

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

发布评论

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

评论(2

骄兵必败 2024-12-07 23:21:42

在 C++ 中,size_tstd 命名空间的 标头中声明。

#include <cstddef>

int intFcn (const void *key, std::size_t table_size);

在 C 中(以及 C++ 中),它在 中声明:

#include <stddef.h>

int intFcn (const void *key, size_t table_size);

In C++ size_t is declared in the <cstddef> header in the std namespace.

#include <cstddef>

int intFcn (const void *key, std::size_t table_size);

In C (and in C++ too), it's declared in <stddef.h>:

#include <stddef.h>

int intFcn (const void *key, size_t table_size);
月亮是我掰弯的 2024-12-07 23:21:42

对于 size_t,您需要:

#include <stddef.h>   // in C

或 :

#include <cstddef>    // in C++

For size_t, you need to :

#include <stddef.h>   // in C

or :

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