modified: 18.1.md

new file:   18.10.md
	new file:   18.11.md
	new file:   18.2.md
	new file:   18.3.md
	new file:   18.4.md
	modified:   18.5.md
	new file:   18.6.md
	new file:   18.7.md
	new file:   18.8.md
	new file:   18.9.md
	modified:   directory.md
This commit is contained in:
songleo
2016-01-03 13:53:23 +08:00
parent 7ea77a4738
commit 7c06912c30
12 changed files with 417 additions and 75 deletions

23
eBook/18.10.md Normal file
View File

@@ -0,0 +1,23 @@
# 18.10 其他
如何在程序出错时停止:
```go
if err != nil {
fmt.Printf(“Program stopping with error %v”, err)
os.Exit(1)
}
```
或者:
```go
if err != nil {
panic(“ERROR occurred: “ + err.Error())
}
```
## 链接
- [目录](directory.md)
- 上一章:[运算符模板和接口](17.4.md)
- 下一节:[字符串](18.1.md)