如何用 Go 语言进行扫描
在Go(golang)中,fmt包提供了几个用于扫描来自控制台或其他输入源的输入的函数。
对我来说,这些在测试和许多其他领域一直很有用。到目前为止,我在扫描时通常使用 4 个功能。
让我们探索其中的一些,看看如何、为什么以及何时使用它。
1. fmt.扫描
- 用途:从标准输入(控制台)读取空格分隔的输入。
- 停止阅读: 在第一个换行符或空格处停止。
- 多个变量:可以在一次调用中读取多个变量。
- 返回:成功扫描的项目数量以及错误(如果有)。
示例:
package main import ( "fmt" ) func main() { var name string var age int fmt.Print("Enter your name and age: ") fmt.Scan(&name, &age) // Reading input separated by space fmt.Printf("Hello %s, you are %d years old.\n", name, age) }
输入示例:
爱丽丝 25
输出:
Hello Alice, you are 25 years old.
2. fmt.Scanln
- 用途:读取输入,直到遇到换行符 (n)。
- 停止阅读:在换行符而不是空格处停止。
- 多个变量: 可以读取多个变量,但如果先到达换行符就会停止。
- 返回:成功扫描的项目数量以及错误(如果有)。
示例:
package main import ( "fmt" ) func main() { var name string var age int fmt.Print("Enter your name and age: ") fmt.Scanln(&name, &age) // Reads until newline is encountered fmt.Printf("Hello %s, you are %d years old.\n", name, age) }
输入示例:
爱丽丝 25
输出:
Hello Alice, you are 25 years old.
3. fmt.Scanf
- 用途: 使用格式说明符(如 %s、%d、%f)读取格式化输入。
- 停止读取:根据指定格式停止。
- 多个变量:可以使用格式说明符精确控制读取多个变量。
- 返回:成功扫描的项目数量以及错误(如果有)。
示例:
package main import ( "fmt" ) func main() { var name string var age int fmt.Print("Enter your name and age (formatted): ") fmt.Scanf("%s %d", &name, &age) // Reads formatted input fmt.Printf("Hello %s, you are %d years old.\n", name, age) }
输入示例:
爱丽丝 25
输出:
Hello Alice, you are 25 years old.
4. bufio.NewReader(用于高级输入处理)
- 用途:与fmt相比,提供更高级的输入读取功能。
- 停止读取: 允许读取整行,包括空格。
- 多个变量: 将输入读取为单个字符串,然后可以根据需要进一步拆分。
- 返回: 完整的输入行作为字符串。
示例:
package main import ( "bufio" "fmt" "os" "strings" ) func main() { reader := bufio.NewReader(os.Stdin) fmt.Print("Enter your name and age: ") input, _ := reader.ReadString('\n') // Reads entire line including spaces input = strings.TrimSpace(input) // Trim newline and spaces fmt.Printf("You entered: %s\n", input) }
输入示例:
爱丽丝 25
输出:
package main import ( "fmt" ) func main() { var name string var age int fmt.Print("Enter your name and age: ") fmt.Scan(&name, &age) // Reading input separated by space fmt.Printf("Hello %s, you are %d years old.\n", name, age) }
? 汇总表:
Function | Purpose | Stops Reading At | Supports Formatting? | Multiple Variables? | Use Case |
---|---|---|---|---|---|
fmt.Scan | Basic scanning | Whitespace | ❌ | ✅ | Simple input without newline |
fmt.Scanln | Scans until newline | Newline (n) | ❌ | ✅ | Input until newline |
fmt.Scanf | Formatted input scanning | Controlled by format | ✅ | ✅ | Precise formatted input |
bufio.NewReader | Advanced input handling | Customizable | ✅ | ❌ | Large input with spaces |
以上是如何用 Go 语言进行扫描的详细内容。更多信息请关注PHP中文网其他相关文章!

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

Video Face Swap
使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

OpenSSL,作为广泛应用于安全通信的开源库,提供了加密算法、密钥和证书管理等功能。然而,其历史版本中存在一些已知安全漏洞,其中一些危害极大。本文将重点介绍Debian系统中OpenSSL的常见漏洞及应对措施。DebianOpenSSL已知漏洞:OpenSSL曾出现过多个严重漏洞,例如:心脏出血漏洞(CVE-2014-0160):该漏洞影响OpenSSL1.0.1至1.0.1f以及1.0.2至1.0.2beta版本。攻击者可利用此漏洞未经授权读取服务器上的敏感信息,包括加密密钥等。

后端学习路径:从前端转型到后端的探索之旅作为一名从前端开发转型的后端初学者,你已经有了nodejs的基础,...

在BeegoORM框架下,如何指定模型关联的数据库?许多Beego项目需要同时操作多个数据库。当使用Beego...

Go语言中用于浮点数运算的库介绍在Go语言(也称为Golang)中,进行浮点数的加减乘除运算时,如何确保精度是�...

Go爬虫Colly中的Queue线程问题探讨在使用Go语言的Colly爬虫库时,开发者常常会遇到关于线程和请求队列的问题。�...

Go语言中使用RedisStream实现消息队列时类型转换问题在使用Go语言与Redis...

Go语言中字符串打印的区别:使用Println与string()函数的效果差异在Go...

GoLand中自定义结构体标签不显示怎么办?在使用GoLand进行Go语言开发时,很多开发者会遇到自定义结构体标签在�...
