当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Golang fmt.Sprint()用法及代码示例


在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()没有使用任何空格,并且在两个字母之间的输出中也看不到空格,这是因为常量变量中使用了字符串。




相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 fmt.Sprint() Function in Golang With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。