C 中无宽度打印格式
在 C 中,如果我有一个包含“%.2f”的 printf 语句,它表示精度是小数点后 2 位数字。我没有明确指定宽度。我有两个问题:
这是好的编程实践吗?;
不指定宽度是否意味着在打印数字时,字段的宽度将自动调整,而不管它包含多少位数?
不
多谢...
in C if I have a printf statement containing say "%.2f", it says that the precision is 2 digits after the decimal place. I haven't explicitly specify the width. I have two questions:
Is this good programming practice?;
Is without specifying the width means that the width of the field will get adjusted automatically when printing the number, irrespective of the number of digits it contains?
Thanks a lot...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果这符合您的要求,那么这是一个很好的做法。如果它做了你不想做的事情,那就是不好的做法。就这么简单。
是的,宽度已调整以适合数字。 (请注意,如果您指定了宽度,则宽度只是最小值;如果您指定了宽度而数字不适合,则结果将变得比您预期的更宽。)
If this does what you want to do, then it's good practice. If it does something that you don't want to do, it's bad practice. Simple as that.
Yes, the width is adjusted to fit the number. (Note that the width, if you specify it, is a minimum only; if you specified a width and the number wouldn't fit, the result would become wider than you might have expected.)