compound-literals

compound-literals

文章 0 浏览 1

这是无效的 C++ 吗?

struct HybridExpression { RawExpressionElement *ree ExpressionNode *en } vector&ltHybridExpression&gt hexpression hexpression.insert(hexpres…

迷乱花海 2024-10-29 16:52:50 2 0

C 复合文字、数组指针

我试图将复合文字分配给变量,但它似乎不起作用,请参阅: int *p[] = (int *[]) {{1,2,3},{4,5,6}} 我在 gcc 中遇到错误。 但如果我只写这个: int p…

给我一枪 2024-10-29 15:00:50 3 0

MSVC 中的复合文字

在 GCC 中,我可以执行此操作: (CachedPath){ino} inode-&gtdata = (struct Data)DATA_INIT 其中: struct CachedPath { Ino ino } typedef int8_t D…

把时间冻结 2024-09-26 03:07:29 11 0

复合文字中使用的强制转换与指针变量上使用的强制转换之间的区别?

考虑以下代码: int main() { int *p ++((int){5}) //compile without err/warning &amp((int){5}) //compile without err/warning ++((char *)p) //C…

陌路终见情 2024-08-24 08:19:50 2 0

是否可以(合法)在复合文字中分配匿名联合?

我有一个结构: typedef struct _n { int type union { char *s int i } } n 当我尝试分配复合文字时,例如: node n1 = {1, 0} node n2 = {2, "test"…

泅渡 2024-08-14 12:22:50 9 0
更多

推荐作者

留蓝

文章 0 评论 0

18790681156

文章 0 评论 0

zach7772

文章 0 评论 0

Wini

文章 0 评论 0

ayeshaaroy

文章 0 评论 0

初雪

文章 0 评论 0

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