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

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

查看所有标签

猜你喜欢:

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

How to Build a Billion Dollar App

How to Build a Billion Dollar App

George Berkowski / Little, Brown Book Group / 2015-4-1 / USD 24.95

Apps have changed the way we communicate, shop, play, interact and travel and their phenomenal popularity has presented possibly the biggest business opportunity in history. In How to Build a Billi......一起来看看 《How to Build a Billion Dollar App》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

在线进制转换器
在线进制转换器

各进制数互转换器

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

HEX CMYK 互转工具