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 ubuntu22.04上安装ursim-3.15.8.106339遇到的问题
  • ¥15 求螺旋焊缝的图像处理
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?
  • ¥15 网络通信安全解决方案
  • ¥50 yalmip+Gurobi
  • ¥20 win10修改放大文本以及缩放与布局后蓝屏无法正常进入桌面
  • ¥15 itunes恢复数据最后一步发生错误
  • ¥15 关于#windows#的问题:2024年5月15日的win11更新后资源管理器没有地址栏了顶部的地址栏和文件搜索都消失了