18.10 其他链接18.10 其他如何在程序出错时终止程序: if err != nil { fmt.Printf(“Program stopping with error %v”, err) os.Exit(1)} 或者: if err != nil { panic(“ERROR occurred: “ + err.Error())} 链接 目录上一节:网络和网页应用下一节:出于性能考虑的最佳实践和建议