关于 const 语法的困惑

发布于 2024-11-07 15:12:32 字数 210 浏览 0 评论 0原文

我在读取程序中的一行时遇到一些问题,如下所示:

char* const *(*next) ();

我认为 next 是一个指向函数的指针,该函数返回一个指向 const 指针的指针,该指针指向 < code>char,但我还是有点困惑。如果有人能尽快回答这个问题那就太好了!

I'm having some trouble reading a line in a program that looks like this:

char* const *(*next) ();

I think next is a pointer to a function returning a pointer to a const pointer to a char, but I'm still a bit confused. If someone could answer this ASAP that would be great!

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

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

发布评论

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

评论(2

清风不识月 2024-11-14 15:12:32

cdecl可以帮助你理解C中更复杂的声明。

cdecl can help you understand the more complicated declarations in C.

-柠檬树下少年和吉他 2024-11-14 15:12:32

char* const* (*next) ();

您正在声明一个名为 next 的函数指针,它返回一个 char* const* (指向一个char* const)。你是对的(:

用法:

char* const* ret = next();char* const* ret = (*next)();

char* const* (*next) ();

You are declaring a function pointer called next that returns a char* const* (pointer to a char* const). You were right (:

Usage :

char* const* ret = next(); or char* const* ret = (*next)();

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