gpt4 book ai didi

将结构与 C 中的常量进行比较

转载 作者:太空狗 更新时间:2023-10-29 16:01:04 24 4
gpt4 key购买 nike

我正在尝试制作自定义字符串类。卡在一个问题上,我需要将结构与常量字符串进行比较

例子

    typedef struct{
char *val;
} STRING;

int func (STRING* compare){
if ( compare == "a string" ){
return 1;
return 0;
}

最佳答案

您需要使用 strcmp。如果相等则继续返回 1:

int func (STRING* compare){
if ( strcmp(compare, "a string" ) == 0)
return 1;
return 0;
}

关于将结构与 C 中的常量进行比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37449439/

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