dssjxvbv918586 2019-05-02 19:54
浏览 163
已采纳

是否有可能在Golang中返回Integer或Float的函数?

I'd like to create a function which returns an integer value if a condition passes inside the function and a floating point number otherwise. How can I handle this with Go? Thank you!

  • 写回答

3条回答 默认 最新

  • dqj5046 2019-05-02 20:50
    关注

    Yes, it is possible. You just have to return it as a float:

    func doStuff(flag bool) float32 {
        if flag {
            return 1.1
        }
        return 1
    }
    
    func main() {
        num1 := doStuff(true)
        num2 := doStuff(false)
        fmt.Println("Num1: ", num1)
        fmt.Println("Num2: ", num2)
    }
    

    The only thing that matters is how you format it for displaying.

    Demo

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥50 三种调度算法报错 有实例
  • ¥15 关于#python#的问题,请各位专家解答!
  • ¥200 询问:python实现大地主题正反算的程序设计,有偿
  • ¥15 smptlib使用465端口发送邮件失败
  • ¥200 总是报错,能帮助用python实现程序实现高斯正反算吗?有偿
  • ¥15 对于squad数据集的基于bert模型的微调
  • ¥15 为什么我运行这个网络会出现以下报错?CRNN神经网络
  • ¥20 steam下载游戏占用内存
  • ¥15 CST保存项目时失败
  • ¥20 java在应用程序里获取不到扬声器设备