dongmeiba6151 2016-12-21 15:42
浏览 88
已采纳

有没有惯用的打印字符串指针内容的方法或为nil?

I have a string pointer that may or may not be nil, and I want to print out either the contents of the string if contents exist, or indicate that the pointer is nil if it is nil. Is there a clever way to do this that doesn't involve either an if check or a temporary variable (preferably a single line)?

Right now I'm using something like this:

if p == nil {
    fmt.Print(p)
} else {
    fmt.Print(*p)
}

But this is particularly awkward and verbose when there is other formatting and other variables that are intended to be printed before and/or after that value.

  • 写回答

1条回答 默认 最新

  • douxiangui5011 2016-12-21 16:01
    关注

    You could do something like this:

    func main() {
        var hello SmartString = "hello"
    
        p := &hello
        p.Print()
        p = nil
        p.Print()
    
    }
    
    type SmartString string
    
    func (p *SmartString) Print() {
        if p == nil {
            fmt.Println(p)
        } else {
            fmt.Println(*p)
        }
    }
    

    Whether it's a good idea or not is up to you.

    You can even use the String interface to make it work with fmt.Println

    func main() {
        var hello SmartString = "hello"
    
        p := &hello
        fmt.Println(p)
        p = nil
        fmt.Println(p)
    
    }
    
    type SmartString string
    
    func (p *SmartString) String() string {
        if p == nil {
            return "<nil>"
        }
        return string(*p)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制