Go Example--格式化字符串

Posted promenader

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Go Example--格式化字符串相关的知识,希望对你有一定的参考价值。

package main

import (
    "fmt"
    "os"
)

type point struct {
    x, y int
}

func main() {
    p := point{1, 2}
    fmt.Printf("%v
", p)
    fmt.Printf("%+v
", p)
    fmt.Printf("%#v
", p)
    fmt.Printf("%T
", p)
    fmt.Printf("%t
", true)
    fmt.Printf("%d
", 123)
    fmt.Printf("%b
", 14)
    fmt.Printf("%c
", 33)
    fmt.Printf("%x
", 456)
    fmt.Printf("%f
", 78.9)
    fmt.Printf("%e
", 12340000.0)
    fmt.Printf("%E
", 12340000.0)
    fmt.Printf("%s
", ""string"")
    fmt.Printf("%q
", ""string"")
    fmt.Printf("%x
", "hex this")
    fmt.Printf("%p
", &p)
    fmt.Printf("|%6d|%6d|
", 12, 345)
    fmt.Printf("|%6.2f|%6.2f|
", 1.2, 3.45)
    fmt.Printf("|%-6.2f|%-6.2f|
", 1.2, 3.45)
    fmt.Printf("|%6s|%6s|
", "foo", "b")
    fmt.Printf("|%-6s|%-6s|
", "foo", "b")
    s := fmt.Sprintf("a %s", "string")
    fmt.Println(s)
    fmt.Fprintf(os.Stderr, "an %s
", "error")
}

以上是关于Go Example--格式化字符串的主要内容,如果未能解决你的问题,请参考以下文章

Go sql语句引号问题

片段中ListView的setOnItemClickListener

Go Example--Hello

Go Example--值运算

如何从我的 DatePicker 片段中传输格式化的日期字符串?

go语言从例子开始之Example39.使用函数自定义排序