GO语言"fmt"包中"Fprintf"函数的用法及代码示例。
用法:
func Fprintf(w io.Writer, format string, a ...any)(n int, err error)
Fprintf 根据格式说明符格式化并写入 w。它返回写入的字节数和遇到的任何写入错误。
例子:
package main
import (
"fmt"
"os"
)
func main() {
const name, age = "Kim", 22
n, err := fmt.Fprintf(os.Stdout, "%s is %d years old.\n", name, age)
// The n and err return values from Fprintf are
// those returned by the underlying io.Writer.
if err != nil {
fmt.Fprintf(os.Stderr, "Fprintf: %v\n", err)
}
fmt.Printf("%d bytes written.\n", n)
}
输出:
Kim is 22 years old. 21 bytes written.
相关用法
- GO Fprintln用法及代码示例
- GO Fprint用法及代码示例
- GO Fscanln用法及代码示例
- GO Float.SetString用法及代码示例
- GO FileServer用法及代码示例
- GO FieldsFunc用法及代码示例
- GO FormatMediaType用法及代码示例
- GO Float64s用法及代码示例
- GO Floor用法及代码示例
- GO FormatUint用法及代码示例
- GO FormatBool用法及代码示例
- GO Float64sAreSorted用法及代码示例
- GO Float.Scan用法及代码示例
- GO FormatFloat用法及代码示例
- GO FileMode用法及代码示例
- GO FullRune用法及代码示例
- GO FullRuneInString用法及代码示例
- GO Float.Add用法及代码示例
- GO Func用法及代码示例
- GO Frames用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Fprintf。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。