我找到了一个在 golang 中打印颜色的包。然而,它没有简单的不打印颜色的方法。当我的代码因为充满了打印语句而变得更加混乱时,我想重写它。但是,我不知道如何在函数中创建 fstrings。它在我的代码中的外观:color.HEX("#B0DFE5").Print("[" + time.Now().Format("15:04:05") +"] ")color.HEX("#FFFFFF").Printf("Changed %s to %s\n", name, new_name) 我为普通打印创建的内容:func cprintInfo(message string) { color.HEX("#B0DFE5").Print("[!] ") color.HEX("#FFFFFF").Printf(message + "\n") }我要创建的内容:cfprintInfo("Hello %s", world)// Hello world
1 回答
12345678_0001
TA贡献1802条经验 获得超5个赞
Printf()
需要格式字符串和(可选)参数:
func (c RGBColor) Printf(format string, a ...interface{})
所以模仿一下:
func cfprintInfo(format string, args ...interface{}) {
color.HEX("#B0DFE5").Print("[!] ")
color.HEX("#FFFFFF").Printf(format, args...)
}
- 1 回答
- 0 关注
- 99 浏览
添加回答
举报
0/150
提交
取消