forked from gobyexample-cn/gobyexample-cn.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
panic.html
182 lines (136 loc) · 5.94 KB
/
panic.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Go by Example 中文版: Panic</title>
<link rel=stylesheet href="site.css">
</head>
<script>
onkeydown = (e) => {
if (e.key == "ArrowLeft") {
window.location.href = 'sorting-by-functions';
}
if (e.key == "ArrowRight") {
window.location.href = 'defer';
}
}
</script>
<body>
<div class="example" id="panic">
<h2><a href="./">Go by Example 中文版</a>: Panic</h2>
<table>
<tr>
<td class="docs">
<p><code>panic</code> 意味着有些出乎意料的错误发生。
通常我们用它来表示程序正常运行中不应该出现的错误,
或者我们不准备优雅处理的错误。</p>
</td>
<td class="code empty leading">
</td>
</tr>
<tr>
<td class="docs">
</td>
<td class="code leading">
<a href="https://play.studygolang.com/p/EzV2wyI8_qU"><img title="Run code" src="play.png" class="run" /></a><img title="Copy code" src="clipboard.png" class="copy" />
<pre class="chroma"><span class="kn">package</span> <span class="nx">main</span>
</pre>
</td>
</tr>
<tr>
<td class="docs">
</td>
<td class="code leading">
<pre class="chroma"><span class="kn">import</span> <span class="s">"os"</span>
</pre>
</td>
</tr>
<tr>
<td class="docs">
</td>
<td class="code leading">
<pre class="chroma"><span class="kd">func</span> <span class="nf">main</span><span class="p">()</span> <span class="p">{</span>
</pre>
</td>
</tr>
<tr>
<td class="docs">
<p>我们将使用 panic 来检查这个站点上预期之外的错误。
而该站点上只有一个程序:触发 panic。</p>
</td>
<td class="code leading">
<pre class="chroma">
<span class="nb">panic</span><span class="p">(</span><span class="s">"a problem"</span><span class="p">)</span>
</pre>
</td>
</tr>
<tr>
<td class="docs">
<p>panic 的一种常见用法是:当函数返回我们不知道如何处理(或不想处理)的错误值时,中止操作。
如果创建新文件时遇到意外错误该如何处理?这里有一个很好的 <code>panic</code> 示例。</p>
</td>
<td class="code">
<pre class="chroma">
<span class="nx">_</span><span class="p">,</span> <span class="nx">err</span> <span class="o">:=</span> <span class="nx">os</span><span class="p">.</span><span class="nf">Create</span><span class="p">(</span><span class="s">"/tmp/file"</span><span class="p">)</span>
<span class="k">if</span> <span class="nx">err</span> <span class="o">!=</span> <span class="kc">nil</span> <span class="p">{</span>
<span class="nb">panic</span><span class="p">(</span><span class="nx">err</span><span class="p">)</span>
<span class="p">}</span>
<span class="p">}</span>
</pre>
</td>
</tr>
</table>
<table>
<tr>
<td class="docs">
<p>运行程序将会导致 panic:
输出一个错误消息和协程追踪信息,并以非零的状态退出程序。</p>
</td>
<td class="code empty leading">
</td>
</tr>
<tr>
<td class="docs">
<p>当 <code>main</code> 中触发第一个 panic 时,程序就会退出而不会执行代码的其余部分。
如果你想看到程序尝试创建 /tmp/file 文件,请注释掉第一个panic。</p>
</td>
<td class="code leading">
<pre class="chroma">
<span class="gp">$</span> go run panic.go
<span class="go">panic: a problem</span></pre>
</td>
</tr>
<tr>
<td class="docs">
</td>
<td class="code leading">
<pre class="chroma"><span class="go">goroutine 1 [running]:
</span><span class="go">main.main()
</span><span class="go"> /.../panic.go:12 +0x47
</span><span class="go">...
</span><span class="go">exit status 2</span></pre>
</td>
</tr>
<tr>
<td class="docs">
<p>注意,与某些使用 exception 处理错误的语言不同,
在 Go 中,通常会尽可能的使用返回值来标示错误。</p>
</td>
<td class="code empty">
</td>
</tr>
</table>
<p class="next">
下一个例子: <a href="defer.html">Defer</a>
</p>
<p class="footer">
<a href="https://twitter.com/mmcgrana">@mmcgrana</a> 和<a href="https://eli.thegreenplace.net">Eli Bendersky</a>编写 | <a href="https://github.com/gobyexample-cn">gobyexample-cn</a> 翻译 | <a href="https://github.com/gobyexample-cn/gobyexample/issues">反馈</a> | <a href="https://github.com/gobyexample-cn/gobyexample">源码</a> | <a href="https://github.com/mmcgrana/gobyexample#license">license</a> </p>
</p>
</div>
<script>
var codeLines = [];
codeLines.push('');codeLines.push('package main\u000A');codeLines.push('import \"os\"\u000A');codeLines.push('func main() {\u000A');codeLines.push(' panic(\"a problem\")\u000A');codeLines.push(' _, err :\u003D os.Create(\"/tmp/file\")\u000A if err !\u003D nil {\u000A panic(err)\u000A }\u000A}\u000A');codeLines.push('');codeLines.push('');codeLines.push('');codeLines.push('');
</script>
<script src="site.js" async></script>
</body>
</html>