亲宝软件园·资讯

展开

Go语言中 Print Printf和Println 的区别解析

岳来 人气:0

一、PrintPrintln

这两个打印方式类似,只在格式上有区别,如下:

package main

import "fmt"

func main() {
    fmt.Print("hello")
    fmt.Print("world")
    fmt.Println("========")
    fmt.Println("hello")
    fmt.Println("world")
    fmt.Println("========")
    fmt.Print("hello", "world")
    fmt.Println("hello", "world")
}

// 结果如下:
helloworld========
hello
world
========
helloworldhello world

由上可知:

二、PrintlnPrintf

如下:

package main

import "fmt"

func main() {
    a:= 10
    b:= "hello, world!"
    fmt.Println("%d,%v", a, b)
    fmt.Printf("%d,%v", a, b)
}

// 结果如下:
%d,%v 10 hello, world!
10,hello, world!% 

Printf 可打印出格式化的字符串,Println不行

总结:

函数同函数输出多项不同函数输出
Println之间存在空格换行
Print不存在空格不换行
Printf格式化输出不换行

1、https://www.cnhackhy.com/110905.htm

2、https://www.cnblogs.com/yuguog/p/15727699.html

加载全部内容

相关教程
猜你喜欢
用户评论