在 golang 中重写一个 fprint 函数
Rewriting a fprint function in golang
我在 golang 中找到了打印颜色的包。但是,它没有打印 no 颜色的简单方法。由于充满了打印语句,我的代码变得越来越混乱,我想重写它。但是,我不知道如何在函数中创建 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
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...)
}
我在 golang 中找到了打印颜色的包。但是,它没有打印 no 颜色的简单方法。由于充满了打印语句,我的代码变得越来越混乱,我想重写它。但是,我不知道如何在函数中创建 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
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...)
}