### 处理错误
```
package main
import (
"fmt"
"io/ioutil"
)
func main() {
f, err := ioutil.ReadFile("test.txt")
if err != nil {
fmt.Println(err)
} else {
fmt.Println(f)
}
}
结果:
open test.txt: The system cannot find the file specified.
```
### 自定义错误
```
type error interface{
Error() string
}
```
```
err := errors.New("this is an error")
```
```
package main
import (
"errors"
"fmt"
)
func main() {
err := errors.New("这是错误程序")
var err2 error
fmt.Println(err.Error())
fmt.Println(err2)
}
结果:
这是错误程序
<nil>
```
```
package main
import (
"fmt"
"runtime"
)
func main() {
if _, _, line, ok := runtime.Caller(0); ok == true {
err := fmt.Errorf("错误出现在%d行", line)
fmt.Println(err.Error())
}
}
结果:
错误出现在9行
```
- 安装开发环境
- 安装开发环境
- 安装详细教程
- 引入包
- Go语言基础
- 基本变量与数据类型
- 变量
- 数据类型
- 指针
- 字符串
- 代码总结
- 常量与运算符
- 常量
- 运算符
- 流程控制
- if判断
- for循环
- switch分支
- goto跳转
- 斐波那契数列
- Go语言内置容器
- 数组
- 切片
- 映射
- 函数
- 函数(上)
- 函数(中)
- 函数(下)
- 小节
- 包管理
- 结构体
- 结构体(上)
- 结构体(中)
- 结构体(下)
- 小节
- 错误处理
- 错误处理
- 宕机
- 错误应用
- 小节
- 文件操作
- 获取目录
- 创建和删除目录
- 文件基本操作(上)
- 文件基本操作(中)
- 文件基本操作(下)
- 处理JSON文件
- 接口与类型
- 接口的创建与实现
- 接口赋值
- 接口嵌入
- 空接口
- 类型断言(1)
- 类型断言(2)
- 小节
- 并发与通道
- goroutine协程
- runtime包
- 通道channel
- 单向通道channel
- select
- 线程同步
- 多线程的深入学习
- http编程
- http简介
- Client和Request
- get请求
- post请求
- 模块函数方法
- 模块
- fmt库,模块
- 项目练习
- 爬虫:高三网
- 爬虫:快代理
- 爬虫:快代理2
- 多线程:通道思路
- 多线程爬虫:快代理