登录
首页 >  Golang >  Go问答

避免写几十行的方法:如何更有效地处理具有 3 个不同指针类型的参数的 Sprintf?

来源:stackoverflow

时间:2024-02-07 16:57:24 487浏览 收藏

各位小伙伴们,大家好呀!看看今天我又给各位带来了什么文章?本文标题《避免写几十行的方法:如何更有效地处理具有 3 个不同指针类型的参数的 Sprintf?》,很明显是关于Golang的文章哈哈哈,其中内容主要会涉及到等等,如果能帮到你,觉得很不错的话,欢迎各位多多点评和分享!

问题内容

我要使用 sprintf 创建此字符串

message := fmt.sprintf("unit %s has a level of %v, but is of category %v",
    *entity.name, *entity.levelcode, *entity.categorycode)

在实体中,变量是指针,可以是nil:

  • name*string
  • levelcode 具有 *levelcode 类型
  • categorycode 具有 *categorycode 类型

但如果它们有一个值,我想要这个值而不是指针。 (即单元 abc 的级别为零,但属于管理单元类别

无论用什么语言,我都会这样写:

message := fmt.sprintf("unit %s has a level of %v, but is of %v category",
    entity.name != nil ? *entity.name : "nil", entity.levelcode != nil ? *entity.levelcode : "nil", entity.categorycode != nil ? *entity.categorycode : "nil")

但是go不允许三元运算符。如果我不处理 nil 值,sprintf 将抛出异常。

那么,我必须这样开始吗?

if entity.Name == nil && entity.LevelCode != nil && entity.CategoryCode != nil) {
   message := "Unit nil has a Level of nil, but is of nil Category"
}
else {
   if entity.Name != nil && entity.LevelCode != nil && entity.CategoryCode != nil) {
     message := fmt.Sprintf("Unit %s has a Level of nil, but is of nil Category",
    entity.Name != nil ? *entity.Name : "nil")
   }
   else {
      ...

     for 9 combinations of values nil or not nil values, and 9 sprintf formats?
   }
}

What the shortest way to dump my variables content in a formatted line?

正确答案


谢谢,在你的帮助下,我成功地构建了该函数。

// value treat pointers that can be nil, and return their values if they aren't.
func value[t any](v *t) string {
    if (v != nil) {
        return fmt.sprintf("%v", *v)
    } else {
        return "nil"
    }
}

这样称呼

message := fmt.Sprintf("Unit %s has a Level of %v, but is of %v Category",
    value(entity.Name), value(entity.LevelCode), value(entity.CategoryCode))

为单个 sprintf 编写五个语句...但它有效。

以上就是本文的全部内容了,是否有顺利帮助你解决问题?若是能给你带来学习上的帮助,请大家多多支持golang学习网!更多关于Golang的相关知识,也可关注golang学习网公众号。

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>