在 Go 语言中, fmt包使用类似于 C 的 printf() 和 scanf()函数的函数来实现格式化的 I/O。 Go 语言格式的fmt.Sprint()函数使用其操作数的默认格式并返回结果字符串。当任何字符串不用作常量变量时,这里在操作数之间添加空格。而且,这个函数是在 fmt 包下定义的。在这里,您需要导入“fmt”包才能使用这些功能。
句法:
func Sprint(a ...interface{}) string
这里,“a …interface{}”包含一些字符串,包括指定的常量变量。
返回:它返回结果字符串。
示例 1:
// Golang program to illustrate the usage of
// fmt.Sprint() 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 Sprint() function
s := fmt.Sprint(name, " is a ", dept, " Portal.\n")
// 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.Sprint() 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 = 5, 10, 15
// Calling Sprint() function
s := fmt.Sprint(num1, num2, num3)
// Calling WriteString() function to write the
// contents of the string "s" to "os.Stdout"
io.WriteString(os.Stdout, s)
}
输出:
5 10 15
在上面的代码中,可以看出函数Sprint() 没有使用任何空格,在数字之间的输出中仍然可以看到空格,因为函数本身添加了空格,因为没有使用单个字符串作为常量变量。
示例 3:
// Golang program to illustrate the usage of
// fmt.Sprint() 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 str1, str2, str3 = "a", "b", "c"
// Calling Sprint() function
s := fmt.Sprint(str1, str2, str3)
// Calling WriteString() function to write the
// contents of the string "s" to "os.Stdout"
io.WriteString(os.Stdout, s)
}
输出:
abc
在上面的代码中,可以看出函数Sprint() 没有使用任何空格,并且在两个字母之间的输出中也看不到空格,这是因为常量变量中使用了字符串。