-
Notifications
You must be signed in to change notification settings - Fork 0
/
15483468139816.html
390 lines (241 loc) · 8.92 KB
/
15483468139816.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
<!DOCTYPE html>
<!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]-->
<!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]-->
<!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js"><!--<![endif]-->
<head>
<meta charset="utf-8">
<title>
go 语言类型推断 - 搁羽念风
</title>
<meta name="author" content="">
<meta name="description" content="">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="asset/css/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
<link href="atom.xml" rel="alternate" title="搁羽念风" type="application/atom+xml">
<script src="asset/js/modernizr-2.0.js"></script>
<script src="asset/js/jquery.min.js"></script>
<script src="asset/highlightjs/highlight.pack.js"></script>
<link href="asset/highlightjs/styles/solarized_light.css" media="screen, projection" rel="stylesheet" type="text/css">
<script>hljs.initHighlightingOnLoad();</script>
<style type="text/css">
.cat-children-p{ padding: 6px 0px;}
.hljs{background: none;}
</style>
<script type="text/javascript">
var isAddSildbar = true;
</script>
<script src="asset/js/octopress.js" type="text/javascript"></script>
</head>
<script type="text/javascript">
//链接新开窗口
function addBlankTargetForLinks () {
$('a[href^="http"]').each(function(){
$(this).attr('target', '_blank');
});
}
$(document).ready(function(event) {
addBlankTargetForLinks();
});
</script>
<body >
<header role="banner"><hgroup>
<h1><a href="index.html">搁羽念风</a></h1>
<h2></h2>
</hgroup>
</header>
<nav role="navigation"><ul class="subscription" data-subscription="rss">
<li><a href="atom.xml" rel="subscribe-rss" title="subscribe via RSS">RSS</a></li>
</ul>
<form action="http://google.com/search" method="get">
<fieldset role="search">
<input type="hidden" name="q" value="site:" />
<input class="search" type="text" name="q" results="0" placeholder="Search"/>
</fieldset>
</form>
<ul class="main-navigation">
<li id=""><a target="self" href="index.html">Home</a></li>
<li id=""><a target="_self" href="archives.html">Archives</a></li>
</ul>
</nav>
<div id="main">
<div id="content">
<div>
<article class="hentry" role="article">
<header>
<h1 class="entry-title">go 语言类型推断</h1>
<p class="meta"><time datetime="2019-01-25T00:20:13+08:00" pubdate data-updated="true">2019/1/25</time></p>
</header>
<div class="entry-content">
<h2 id="toc_0">执行之前动态确保一个结构体拥有某个方法</h2>
<blockquote>
<p>类型断言之后,只能使用接口里定义的方法<br/>
比如 Runner 实际上有 <code>SetId</code> 和 <code>GetId</code> 两个方法<br/>
但是 动态约束了 <code>demo.(interface{SetId(int64)})</code> 之后<br/>
就只能使用<code>SetId</code> 这个方法了</p>
</blockquote>
<pre class="line-numbers"><code class="language-go">package main
import (
"fmt"
)
type Runner struct {
Num int64
}
func (self *Runner) SetId(num int64) {
self.Num = num
fmt.Println(self.Num)
}
func (self *Runner) GetId() int64 {
return self.Num
}
func main() {
var demo interface{} = new(Runner)
demo.(interface {
SetId(int64)
}).SetId(134)
}
</code></pre>
<h2 id="toc_1">利用类型断言,确定变量的类型</h2>
<blockquote>
<p>可以根据不同的类型,进行不同的操作</p>
</blockquote>
<pre class="line-numbers"><code class="language-go">package main
import (
"fmt"
)
func checkType(in interface{}) {
switch value := in.(type) {
case int:
fmt.Println("int", value)
case string:
fmt.Println("string", value)
default:
fmt.Println("unknow", value)
}
}
func main() {
ccc := 134
checkType(ccc)
ddd := "133"
checkType(ddd)
eee := []string{"d", "d", "e"}
checkType(eee)
}
</code></pre>
<h2 id="toc_2">函数作为参数传递</h2>
<blockquote>
<p>函数作为参数传入 并且 被调函数, 参数类型为 interface{}时<br/>
该函数是无法执行的<br/>
将其进行类型转换,即可执行</p>
</blockquote>
<pre class="line-numbers"><code class="language-go">package main
import "fmt"
type Handler func(int, string, int) // 定义一个函数类型
func demo(a int, b string, c int) {
fmt.Println(a, b, c)
}
func check(in interface{}) {
in.(Handler)(112, "ccc", 222)
}
func main() {
check(Handler(demo))
}
</code></pre>
<h2 id="toc_3">类型断言</h2>
<pre class="line-numbers"><code class="language-go">x := "hello world"
if v, ok := interface{}(x).(string); ok { // interface{}(x):把 x 的类型转换成 interface{}
fmt.Println(v)
}
</code></pre>
</div>
<footer>
<p class="meta">
<strong>Categories:</strong>
<span class="categories">
<a class='category' href='golang.html'>golang</a>
</span>
</p>
<p class="meta">
</p>
<div class="sharing">
</div>
<p class="meta">
<a class="basic-alignment left" href="15488420447689.html"
title="Previous Post: ">« </a>
<a class="basic-alignment right" href="15482336668160.html"
title="Next Post: 应用 2:缓兵之计 —— 延时队列">应用 2:缓兵之计 —— 延时队列 »</a>
</p>
</footer>
</article>
</div>
<aside class="sidebar">
<section>
<h1>Categories</h1>
<ul id="recent_posts">
<li class="post">
<a href="linux.html"><strong>linux (3)</strong></a>
</li>
<li class="post">
<a href="%E6%95%B0%E6%8D%AE%E5%BA%93.html"><strong>数据库 (6)</strong></a>
<p class="cat-children-p">
<a href="redis.html">redis (3)</a>
<a href="clickhouse.html">clickhouse (3)</a>
</p>
</li>
<li class="post">
<a href="%E4%B8%AD%E9%97%B4%E4%BB%B6.html"><strong>中间件 (6)</strong></a>
<p class="cat-children-p">
<a href="%E6%B6%88%E6%81%AF%E9%98%9F%E5%88%97.html">消息队列 (4)</a>
<a href="%E6%95%B0%E6%8D%AE%E6%B8%85%E6%B4%97.html">数据清洗 (1)</a>
<a href="%E7%9B%91%E6%8E%A7%E6%8A%A5%E8%AD%A6.html">监控报警 (1)</a>
</p>
</li>
<li class="post">
<a href="%E8%AF%AD%E8%A8%80.html"><strong>语言 (9)</strong></a>
<p class="cat-children-p">
<a href="lua.html">lua (1)</a>
<a href="php.html">php (4)</a>
<a href="golang.html">golang (4)</a>
</p>
</li>
<li class="post">
<a href="%E5%B7%A5%E5%85%B7.html"><strong>工具 (2)</strong></a>
</li>
<li class="post">
<a href="%E8%AE%BE%E8%AE%A1%E6%A8%A1%E5%BC%8F.html"><strong>设计模式 (3)</strong></a>
</li>
<li class="post">
<a href="%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0.html"><strong>读书笔记 (1)</strong></a>
</li>
</ul>
</section>
<section>
<h1>Recent Posts</h1>
<ul id="recent_posts">
<li class="post">
<a href="15589244025963.html">大数据架构</a>
</li>
<li class="post">
<a href="15586915631306.html">对lua携程做超时时间</a>
</li>
<li class="post">
<a href="15586915348117.html"></a>
</li>
<li class="post">
<a href="15586818694083.html">nsq简介</a>
</li>
<li class="post">
<a href="15585794233066.html">mac 安装nsq</a>
</li>
</ul>
</section>
</aside> </div></div>
<footer role="contentinfo"><p>
Copyright © 2014 - -
<span class="credit">Powered by <a target="_blank" href="http://www.mweb.im">MWeb</a> Theme by <a href="http://octopress.org">Octopress</a></span>
</p>
</footer>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script><script type="text/x-mathjax-config">MathJax.Hub.Config({TeX: { equationNumbers: { autoNumber: "AMS" } }});</script>
</body>
</html>