gpt4 book ai didi

c - 如何从 C 中的 .ini 文件访问整数值?

转载 作者:行者123 更新时间:2023-11-30 15:18:28 25 4
gpt4 key购买 nike

我正在尝试将 .ini 文件中的值访问到我的主程序中。 ini 文件只包含一些值,如下所示:

 [number]
jump =4
[letters]
key=H,E,L,L,O

我在主程序中访问它

 LPCSTR file= "C:Users:\\work\\Inifile.ini";
char returnletters[100];
int returnjumpvalue;

GetPrivateProfileString("letters", "key", 0, returnletters, 100, file);
GetPrivateProfileInt("number","jump",0,returnjumpvalue, file);

printf("The letters are %s", returnletters);
printf("The number is %d", returnjumpvalue);

printf 语句是为了验证我是否读取了 ini 文件的正确值。然而,这里的返回字母给出了正确的值,但我不明白 GetPrivateProfileInt 的用法

 returnletters= H,E,L,L,O

我不明白这个。有人可以告诉我这里出了什么问题吗?GetPrivateProfileInt在这里。

最佳答案

returnjumpvalue = GetPrivateProfileInt("number","jump",0, file);

https://msdn.microsoft.com/en-us/library/windows/desktop/ms724345%28v=vs.85%29.aspx

Return value

The return value is the integer equivalent of the string following the specified key name in the specified initialization file. If the key is not found, the return value is the specified default value.

关于c - 如何从 C 中的 .ini 文件访问整数值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31471300/

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