在 golang 中重写 fprint 函数

我找到了一个在 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


慕斯王
浏览 100回答 1
1回答

12345678_0001

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...)}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go