“F”是什么意思? printf 中的格式说明符是什么意思?
printf 中的%.8Ff
格式说明符有什么作用?F
是什么意思?
What does %.8Ff
format specifier in printf do?
What does F
mean?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据手册:
在格式字符串
%.8Ff
中,f
被视为文字字符并打印为f
。According to the manual:
In your format string
%.8Ff
, thef
is treated as a literal character and printed as anf
.在格式说明符后放置文字
f
的一种可能用途是打印一个字符串,稍后由 C 或 C++ 编译器将其解析为float
常量,而不是 <代码>双常量。One possible use of putting a literal
f
after the format specifier could be to print a string that's later to be parsed by a C or C++ compiler as afloat
constant instead ofdouble
constant.