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.

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

报告相同问题?

悬赏问题

  • ¥15 用twincat控制!
  • ¥15 请问一下这个运行结果是怎么来的
  • ¥15 单通道放大电路的工作原理
  • ¥30 YOLO检测微调结果p为1
  • ¥20 求快手直播间榜单匿名采集ID用户名简单能学会的
  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决