📜  Golang 中的 fmt.Sprintln()函数示例

📅  最后修改于: 2021-10-25 03:02:58             🧑  作者: Mango

在 Go 语言中, fmt包使用类似于 C 的 printf() 和 scanf()函数的函数来实现格式化的 I/O。 Go 语言格式的fmt.Sprintln()函数使用其操作数的默认格式并返回结果字符串。这里总是在操作数之间添加空格,并在末尾附加换行符。而且,这个函数是在 fmt 包下定义的。在这里,您需要导入“fmt”包才能使用这些功能。

句法:

func Sprintln(a ...interface{}) string

这里,“a …interface{}”包含一些字符串以及指定的常量变量。

返回:它返回结果字符串。

示例 1:

// Golang program to illustrate the usage of
// fmt.Sprintln() function
  
// Including the main package
package main
  
// Importing fmt, io and os
import (
    "fmt"
    "io"
    "os"
)
  
// Calling main
func main() {
  
    // Declaring some const variables
    const name, dept = "GeeksforGeeks", "CS"
  
    // Calling Sprintln() function
    s := fmt.Sprintln(name, "is a", dept, "Portal.")
  
    // Calling WriteString() function to write the
    // contents of the string "s" to "os.Stdout"
    io.WriteString(os.Stdout, s)
  
}

输出:

GeeksforGeeks is a CS Portal.

示例 2:

// Golang program to illustrate the usage of
// fmt.Sprintln() function
  
// Including the main package
package main
  
// Importing fmt, io and os
import (
    "fmt"
    "io"
    "os"
)
  
// Calling main
func main() {
  
    // Declaring some const variables
    const num1, num2, num3, num4 = 5, 10, 15, 50
  
    // Calling Sprintln() function
    s1 := fmt.Sprintln(num1, "+", num2, "=", num3)
    s2 := fmt.Sprintln(num1, "*", num2, "=", num4)
  
    // Calling WriteString() function to write the
    // contents of the string "s1" and "s2" to "os.Stdout"
    io.WriteString(os.Stdout, s1)
    io.WriteString(os.Stdout, s2)
  
}

输出:

5 + 10 = 15
5 * 10 = 50

在上面的代码中,没有使用新的行或空格,这个函数在上面的输出中可以看到的操作数之间追加新的行和空格。