golang 字符串占位符
时间: 2023-09-12 15:08:34 浏览: 160
Golang库,用于生成带有文本的占位符图像-Golang开发
在 Golang 中,字符串占位符使用类似于 C 语言的 printf 函数的方式。
常见的字符串占位符有:
- %s:用于字符串
- %d:用于整数
- %f:用于浮点数
以下是一个简单的示例:
```go
package main
import "fmt"
func main() {
name := "Alice"
age := 18
height := 1.65
// 使用占位符输出字符串、整数和浮点数
fmt.Printf("My name is %s, I'm %d years old and %.2f meters tall.", name, age, height)
}
```
输出结果:
```shell
My name is Alice, I'm 18 years old and 1.65 meters tall.
```
阅读全文