一个想当然的bug

许久不写Python,"".split(",") 的结果我已经不能脑内运算了:

In [1]: "".split(",")
Out[1]: ['']

我记成了 "".split(",") 的运算结果是 [],因此,昨天在debug这段代码(Golang)的时候花了我好一会儿:

$ cat main.go
package main

import (
	"fmt"
	"strings"
)

func main() {
	l := strings.Split("", ",")
	if len(l) > 0 {
		fmt.Printf("l: %+v\n", l)
	}
}

执行一下:

$ go run main.go
l: []

问题主要在于:

  • 我想当然的以为 "".split(",") 的结果会是一个空list
  • go的 fmt.Printf 真是一个大坑,空字符串你为啥不给我打出来?[""] 才是正确的打印方式呀!

解决方案

使用 %#v 替代 %+v:

$ cat main.go
package main

import (
	"fmt"
	"strings"
)

func main() {
	l := strings.Split("", ",")
	if len(l) > 0 {
		fmt.Printf("l: %#v\n", l)
	}
}
$ go run main.go
l: []string{""}


更多文章
  • Ubuntu 18.04 dhcp更换新IP
  • Python中的新式类(new style class)和老式类(old style class)
  • Python Requests 简明教程
  • 密码技术简明教程(三):证书和TLS
  • 密码技术简明教程(二):散列、消息认证码和数字签名
  • SEO学习笔记
  • 密码技术简明教程(一):对称加密和非对称加密
  • Kubernetes 笔记
  • go mod 和 logrus 路径大小写的问题
  • Flask自动加载Blueprint
  • 在KVM里安装Minikube
  • 搞定面试中的系统设计题
  • Crontab + Sendmail实现定时任务并且通知
  • Nginx设置Referer来防止盗图
  • Graphviz dot简明教程