当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Julia Printf.@printf用法及代码示例


用法:

@printf([io::IO], "%Fmt", args...)

使用 C printf 样式格式规范字符串打印 args。可选地,IO 可以作为第一个参数传递给重定向输出。

例子

julia> @printf "Hello %s" "world"
Hello world

julia> @printf "Scientific notation %e" 1.234
Scientific notation 1.234000e+00

julia> @printf "Scientific notation three digits %.3e" 1.23456
Scientific notation three digits 1.235e+00

julia> @printf "Decimal two digits %.2f" 1.23456
Decimal two digits 1.23

julia> @printf "Padded to length 5 %5i" 123
Padded to length 5   123

julia> @printf "Padded with zeros to length 6 %06i" 123
Padded with zeros to length 6 000123

julia> @printf "Use shorter of decimal or scientific %g %g" 1.23 12300000.0
Use shorter of decimal or scientific 1.23 1.23e+07

有关格式的系统规范,请参阅这里。另见 @sprintf

注意事项

InfNaN 始终打印为 InfNaN 。对于标志 %a%A%e%E%f%F%g%G 。此外,如果浮点数与两个可能的输出字符串的数值相等,则选择离零更远的输出字符串。

例子

julia> @printf("%f %F %f %F", Inf, Inf, NaN, NaN)
Inf Inf NaN NaN

julia> @printf "%.0f %.1f %f" 0.5 0.025 -0.0078125
0 0.0 -0.007812

相关用法


注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 Printf.@printf — Macro。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。