gpt4 book ai didi

c++ - typedef int* intptr 或 typedef int *intptr;

转载 作者:行者123 更新时间:2023-11-30 17:39:09 25 4
gpt4 key购买 nike

本能地我找到了在指针声明中放置空格的位置:

int system(const char *command);   // <-- right
int* foo() { return 0; } // <-- wrong
int *X = 123; // <-- right
int* Y = 321; // <-- wrong
int *Z = (int*) X += (int*)Y // <-- right
#define pchar char* // <-- right

但这仍然让我困惑:

typedef int* intptr;

或者

typedef int *intptr;

星星属于哪里,左边还是右边?

最佳答案

两者是等价的。选择是问题还是个人喜好。

关于c++ - typedef int* intptr 或 typedef int *intptr;,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21926328/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com