99999久久久久久亚洲,欧美人与禽猛交狂配,高清日韩av在线影院,一个人在线高清免费观看,啦啦啦在线视频免费观看www

熱線電話:13121318867

登錄
首頁精彩閱讀go和python變量賦值遇到的一個(gè)問題
go和python變量賦值遇到的一個(gè)問題
2018-02-21
收藏

go和python變量賦值遇到的一個(gè)問題

平時(shí)寫得多的是python,最近看了一點(diǎn)go,今天碰到了一個(gè)問題,和大家分享一下    
package main
 
import "fmt"
 
type student struct {
  Name string
  Age int
}
 
func pase_student() {
  m := make(map[string]*student)
  stus := []student{
    {Name: "zhou", Age: 24},
    {Name: "li", Age: 23},
    {Name: "wang", Age: 22},
  }
  for _, stu := range stus {
    m[stu.Name] = &stu
  }
  fmt.Println(m["zhou"].Name)
}
 
func main() {
  pase_student()

}


代碼很簡(jiǎn)單,大家可以思考一下會(huì)打印出什么。

time.sleep(60)  # 思考

結(jié)果是 wang !,驚喜不驚喜!遍歷賦值啊同學(xué)們,這么簡(jiǎn)單的操作都能出幺蛾子,WTF!

為什么是 wang 呢?
你tm給我
解釋解釋
什么是驚喜

for循環(huán)的時(shí)候,變量stu的指針是不變的,每次循環(huán)僅僅是對(duì)student結(jié)構(gòu)體的 值 拷貝,上面的for循環(huán)和下面是一樣的:



var stu student
for_, stu=rangestus {
 m[stu.Name]=&stu
}

所以 &stu 自始至終都是一個(gè)地址,變化的是這個(gè)地址上存儲(chǔ)的值。 &stu 最終存儲(chǔ)的值是 student{Name: "wang", Age: 22} 結(jié)構(gòu)體,所以拿出來的是 wang 。

可以將 m 打出來看一下:

map[zhou:0xc42000a260 li:0xc42000a260 wang:0xc42000a260]

驗(yàn)證了我們上面的想法,大家的value都是同一個(gè)地址。

看到這里,如果是一個(gè)日常寫c,c++等強(qiáng)類型語言的同學(xué)可能會(huì)說,神經(jīng)病??!這有什么好說的!不就是這樣的嗎!請(qǐng)?jiān)徫?,我日常?a href='/map/python/' style='color:#000;font-size:inherit;'>python的 [捂臉]。

從上面的例子可以看出來,在go中,變量名是 存儲(chǔ)地址的名字 。它在編譯時(shí)綁定已經(jīng)完成,運(yùn)行時(shí)是不可以改變的,你只能改變地址中存儲(chǔ)的值。

而在python中,變量是對(duì)象的名字,運(yùn)行時(shí)變量可以綁定到任意的對(duì)象上。如下所示:

In [4]: a=123456
 
In [5]:id(a)
Out[5]:4426596208
 
In [6]: a=1234567
 
In [7]:id(a)
Out[7]:4426592592

注意:由于python對(duì)int類型實(shí)現(xiàn)了 小整數(shù)對(duì)象池 ,不要用 0-255 的整數(shù)做實(shí)驗(yàn),不然你得到id會(huì)是一樣的。

也就是說,當(dāng)你循環(huán)一個(gè)list的時(shí)候,每次得到的是不同對(duì)象,變量指向了不同的地址:'



In [9]:foriin[2222,2223,2224]:
  ...:  print(id(i))
  ...:
4426596208
4426592336
4426596080

上面這段代碼,python為我們創(chuàng)建了3個(gè) PyIntObject , i 只是他們的名字。而在go中,可以認(rèn)為只有一個(gè)object,值變化了3次。

python中說的 賦值就是建立一個(gè)對(duì)象的引用 ,是實(shí)話。



數(shù)據(jù)分析咨詢請(qǐng)掃描二維碼

若不方便掃碼,搜微信號(hào):CDAshujufenxi

數(shù)據(jù)分析師資訊
更多

OK
客服在線
立即咨詢
客服在線
立即咨詢
') } function initGt() { var handler = function (captchaObj) { captchaObj.appendTo('#captcha'); captchaObj.onReady(function () { $("#wait").hide(); }).onSuccess(function(){ $('.getcheckcode').removeClass('dis'); $('.getcheckcode').trigger('click'); }); window.captchaObj = captchaObj; }; $('#captcha').show(); $.ajax({ url: "/login/gtstart?t=" + (new Date()).getTime(), // 加隨機(jī)數(shù)防止緩存 type: "get", dataType: "json", success: function (data) { $('#text').hide(); $('#wait').show(); // 調(diào)用 initGeetest 進(jìn)行初始化 // 參數(shù)1:配置參數(shù) // 參數(shù)2:回調(diào),回調(diào)的第一個(gè)參數(shù)驗(yàn)證碼對(duì)象,之后可以使用它調(diào)用相應(yīng)的接口 initGeetest({ // 以下 4 個(gè)配置參數(shù)為必須,不能缺少 gt: data.gt, challenge: data.challenge, offline: !data.success, // 表示用戶后臺(tái)檢測(cè)極驗(yàn)服務(wù)器是否宕機(jī) new_captcha: data.new_captcha, // 用于宕機(jī)時(shí)表示是新驗(yàn)證碼的宕機(jī) product: "float", // 產(chǎn)品形式,包括:float,popup width: "280px", https: true // 更多配置參數(shù)說明請(qǐng)參見:http://docs.geetest.com/install/client/web-front/ }, handler); } }); } function codeCutdown() { if(_wait == 0){ //倒計(jì)時(shí)完成 $(".getcheckcode").removeClass('dis').html("重新獲取"); }else{ $(".getcheckcode").addClass('dis').html("重新獲取("+_wait+"s)"); _wait--; setTimeout(function () { codeCutdown(); },1000); } } function inputValidate(ele,telInput) { var oInput = ele; var inputVal = oInput.val(); var oType = ele.attr('data-type'); var oEtag = $('#etag').val(); var oErr = oInput.closest('.form_box').next('.err_txt'); var empTxt = '請(qǐng)輸入'+oInput.attr('placeholder')+'!'; var errTxt = '請(qǐng)輸入正確的'+oInput.attr('placeholder')+'!'; var pattern; if(inputVal==""){ if(!telInput){ errFun(oErr,empTxt); } return false; }else { switch (oType){ case 'login_mobile': pattern = /^1[3456789]\d{9}$/; if(inputVal.length==11) { $.ajax({ url: '/login/checkmobile', type: "post", dataType: "json", data: { mobile: inputVal, etag: oEtag, page_ur: window.location.href, page_referer: document.referrer }, success: function (data) { } }); } break; case 'login_yzm': pattern = /^\d{6}$/; break; } if(oType=='login_mobile'){ } if(!!validateFun(pattern,inputVal)){ errFun(oErr,'') if(telInput){ $('.getcheckcode').removeClass('dis'); } }else { if(!telInput) { errFun(oErr, errTxt); }else { $('.getcheckcode').addClass('dis'); } return false; } } return true; } function errFun(obj,msg) { obj.html(msg); if(msg==''){ $('.login_submit').removeClass('dis'); }else { $('.login_submit').addClass('dis'); } } function validateFun(pat,val) { return pat.test(val); }