预期在 '\0' 之前有不合格的 id

发布于 2024-11-17 17:25:35 字数 269 浏览 2 评论 0原文

我尝试了以下操作,但收到错误

typedef '\0' DEFAULT_VALUE;   

错误:“\0”之前应有不合格的 ID

typedef NULL DEFAULT_VALUE;   

错误:__null 之前应有不合格的 id

我在这里做错了什么?

I tried following things but I am getting the error

typedef '\0' DEFAULT_VALUE;   

Error: expected unqalified id before '\0'`

typedef NULL DEFAULT_VALUE;   

Error: expected unqalified id before __null

what I am doing wrong here?

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

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

发布评论

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

评论(2

仅此而已 2024-11-24 17:25:35

typedef 的一般语法是:

typedef existing_type new_type_name ;

由于 '\0'NULL 不是现有的类型,因此您得到错误。

由于您想要定义常量,因此可以将 const 用作:

const int DEFAULT_VALUE = '\0';

The general syntax of a typedef is:

typedef existing_type new_type_name ;

Since '\0' and NULL are not existing types you get the error.

Since you want define constants you can use the const as:

const int DEFAULT_VALUE = '\0';
画骨成沙 2024-11-24 17:25:35

关键字typedef定义现有类型的同义词。 \0NULL 都不是类型。也许你想要如下的东西:

#define DEFAULT_VALUE NULL

The keyword typedef defines synonym for existing type. Neither \0 nor NULL are type. May be you want something as follows:

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