gpt4 book ai didi

c - 限制结构内的关键字和指针

转载 作者:太空狗 更新时间:2023-10-29 16:31:06 25 4
gpt4 key购买 nike

像这样使用 restrict 关键字:

int f(int* restrict a, int* restrict b);

我可以指示编译器数组 a 和 b 不重叠。假设我有一个结构:

struct s{
(...)
int* ip;
};

并编写一个接受两个 struct s 对象的函数:

int f2(struct s a, struct s b);

在这种情况下,我如何类似地指示编译器 a.ipb.ip 不重叠?

最佳答案

您还可以在结构内使用restrict

struct s {
/* ... */
int * restrict ip;
};

int f2(struct s a, struct s b)
{
/* ... */
}

因此,编译器可以假定 a.ipb.ip 用于在每次调用 f2< 期间引用不相交的对象 函数。

关于c - 限制结构内的关键字和指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13307190/

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