duanhui1185 2016-05-17 08:20
浏览 43
已采纳

是否可以使用golang中的自定义库触发编译时错误?

Let's say, I have min() (just for example) a variadic function to define the smallest value from multiple values provided.

If the caller don't provided any parameter, I want to halt compile process (as this would be the bug in the caller, not error in my function).

How to do that?

  • 写回答

1条回答 默认 最新

  • duanjieyi6582 2016-05-17 08:40
    关注

    Calling a function which has variadic parameter and passing no arguments is valid by the language spec. So you can't make it a compile-time error.

    However, you may modify the signature of your function to have a non-variadic and a variadic parameter, and then calling it with no arguments would indeed be a compile-time error:

    func min(first int, rest ...int) int {
        m := first
        for _, v := range rest {
            if v < m {
                m = v
            }
        }
        return m
    }
    

    This will force callers to pass at least 1 argument, else it will be a compile-time error. This min() function can be called like this:

    min(1)
    min(1, 2)
    min(1, 2, -3)
    

    But attempting to call it without any arguments results in compile-time error:

    min() // Error: not enough arguments in call to min
    

    If you want the callers to pass at least 2 arguments:

    func min(first, second int, rest ...int) int {
        return 0 // Implement your logic here
    }
    

    Note:

    The above example is also more efficient if the caller just wants to pass 1 argument, as variadic parameters are implemented with slices in the background, and if the caller passes only 1 argument, no slice will have to be created, a nil slice will be passed (this can be verified by printing rest == nil – which will be true).

    The potential downside is that if you have a slice, you can't just pass it to the function, but you may do the following:

    s := []int{1, 2, -3}
    fmt.Println(min(s[0], s[1:]...))
    

    Which is passing the first element, and slicing the slice to pass the rest and using ... to pass it as the value for the variadic parameter. Don't forget to check if the slice has at least 1 element, else the above code panics at runtime.

    Try the examples on the Go Playground.

    If you can't or don't want to modify the signature of your function, your only option is to panic or exit from the app at runtime, but no possibility to fail at compile-time.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥65 永磁型步进电机PID算法
  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥200 uniapp长期运行卡死问题解决
  • ¥15 latex怎么处理论文引理引用参考文献
  • ¥15 请教:如何用postman调用本地虚拟机区块链接上的合约?
  • ¥15 为什么使用javacv转封装rtsp为rtmp时出现如下问题:[h264 @ 000000004faf7500]no frame?