作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 .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/
我是一名优秀的程序员,十分优秀!