gpt4 book ai didi

c - 使用 memset 时出现 `argument of type` 警告

转载 作者:太空宇宙 更新时间:2023-11-04 03:37:00 25 4
gpt4 key购买 nike

我有数组;

volatile uint32_t SoftTimers[8] ;

我想在程序中将我的数组的所有内容重置为零(不是初始化)。我搜索了这个并找到了 memset。但是我在使用这个函数时有这个警告(不是错误),这是一个问题吗?

我这样使用 memset:

memset(SoftTimers, 0, sizeof(SoftTimers));

这是警告信息:

warning: #167-D: argument of type "volatile uint32_t *" is incompatible with parameter of type "void *"

最佳答案

在这种情况下你不能使用 memset,因为它需要一个非 volatile 指针,而你正试图传递一个 volatile 指针:

6.7.3 Type qualifiers

  1. If an attempt ismade to refer to an object defined with a volatile-qualified type through use of an lvaluewith non-volatile-qualified type, the behavior is undefined.

编写您自己的函数,该函数采用指向 volatile uint32_t 类型的指针。

关于c - 使用 memset 时出现 `argument of type` 警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31770047/

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