• 18.10 其他
    • 链接

    18.10 其他

    如何在程序出错时终止程序:

    1. if err != nil {
    2. fmt.Printf(“Program stopping with error %v”, err)
    3. os.Exit(1)
    4. }

    或者:

    1. if err != nil {
    2. panic(“ERROR occurred: + err.Error())
    3. }

    链接

    • 目录
    • 上一节:网络和网页应用
    • 下一节:出于性能考虑的最佳实践和建议