Go中格式化输出

栏目: Go · 发布时间: 6年前

// code_002_basedata project main.go
package main

import (
    "fmt"
)

type Power struct {
    age  int
    high int
    name string
}

func main() {
    var str string
    str = "abc"
    ch := str[0]

    fmt.Printf("str= %s, len= %d \n", str, len(str))
    fmt.Printf("str[0]= %c, ch = %c\n", str[0], ch)

    str2 := `hello
    mike \n \r测试
    `
    fmt.Println("str2=", str2)

    var v1 complex64
    v1 = 3.2 + 12i
    v2 := 3.2 + 12i
    v3 := complex(3.2, 12)
    fmt.Println(v1, v2, v3)
    fmt.Println(real(v1), imag(v1))

    fmt.Println("============")

    var i Power = Power{18, 178, "tom"}
    fmt.Printf("type:%T\n", i)
    fmt.Printf("value:%v\n", i)
    fmt.Printf("value:%+v\n", i)
    fmt.Printf("value:%#v\n", i)
    /*
    ============
    type:main.Power
    value:{18 178 tom}
    value:{age:18 high:178 name:tom}
    value:main.Power{age:18, high:178, name:"tom"}
    */

    fmt.Println("=====intervface=======")
    var interstr interface{} = i
    fmt.Printf("%v\n", interstr)
    fmt.Println(interstr)

    /*
    =====intervface=======
{18 178 tom}
{18 178 tom}
    */
}

//常用的格式化字符:%s, %d, %c, %T, %v, %p

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Agile Web Application Development with Yii 1.1 and PHP5

Agile Web Application Development with Yii 1.1 and PHP5

Jeffrey Winesett / Packt Publishing / 2010-08-27

In order to understand the framework in the context of a real-world application, we need to build something that will more closely resemble the types of applications web developers actually have to bu......一起来看看 《Agile Web Application Development with Yii 1.1 and PHP5》 这本书的介绍吧!

SHA 加密
SHA 加密

SHA 加密工具

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具