gpt4 book ai didi

c - strtol 中的别名参数

转载 作者:太空狗 更新时间:2023-10-29 17:21:30 26 4
gpt4 key购买 nike

根据 C11 (n1570) 中的 § 7.22.1.4,必须声明 strtol:

#include <stdlib.h>

long int strtol (const char *restrict nptr,
char **restrict endptr,
int base);

据我所知,restrict 关键字意味着左值 *nptr 所引用的对象只能通过它或直接从它派生的值来访问。

但是,很多程序员,甚至是有经验的程序员,都按以下方式使用 strtol:

#include <stdlib.h>

strtol (p, &p, 10);

在这种情况下,**endptr == **&p == *p == *nptr,行为未定义。对吗?

最佳答案

没有。通过 strtol 中的 **endptr 无法访问任何内容。仅访问完全独立的对象 *endptr

关于c - strtol 中的别名参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14879690/

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