掃一掃
關注中圖網
官方微博
本類五星書更多>
-
>
全國計算機等級考試最新真考題庫模擬考場及詳解·二級MSOffice高級應用
-
>
決戰行測5000題(言語理解與表達)
-
>
軟件性能測試.分析與調優實踐之路
-
>
第一行代碼Android
-
>
JAVA持續交付
-
>
EXCEL最強教科書(完全版)(全彩印刷)
-
>
深度學習
Go程序設計語言-(英文版) 版權信息
- ISBN:9787111526285
- 條形碼:9787111526285 ; 978-7-111-52628-5
- 裝幀:暫無
- 冊數:暫無
- 重量:暫無
- 所屬分類:>>
Go程序設計語言-(英文版) 本書特色
go語言是谷歌推出的一種全新的c語言風格的編程語言,可以在不損失應用程序性能的情況下降低代碼的復雜性,提高編程效率,適合開發大型軟件,有望成為主流的編程語言。本書由《c程序設計語言》的作者kernighan和谷歌公司go團隊合作編寫而成,是關于go語言編程的權威著作。
Go程序設計語言-(英文版) 內容簡介
Go語言是谷歌推出的一種全新的C語言風格的編程語言,可以在不損失應用程序性能的情況下降低代碼的復雜性,提高編程效率,適合開發大型軟件,有望成為主流的編程語言。本書由《C程序設計語言》的作者Kernighan和谷歌公司Go團隊合作編寫而成,是關于Go語言編程的權威著作。
Go程序設計語言-(英文版) 目錄
目 錄第1章 綜述 11.1 hello,world 11.2 命令行參數 41.3 查找重復行 81.4 gif動畫 131.5 獲取一個url 151.6 并發獲取多個url 171.7 實現一個web服務器 191.8 雜項 23第2章 程序結構 272.1 名字 272.2 聲明 282.3 變量 302.4 賦值 362.5 類型聲明 392.6 包和文件 412.7 作用域 45第3章 基本數據類型 513.1 整數 513.2 浮點數 563.3 復數 613.4 布爾量 633.5 字符串 643.6 常量 75第4章 復合類型 814.1 數組 814.2 切片 844.3 鍵值對 934.4 結構體 994.5 json 1074.6 文本和html模板 113第5章 函數 1195.1 函數聲明 1195.2 遞歸 1215.3 多返回值 1245.4 錯誤 1275.5 作為值的函數 1325.6 匿名函數 1355.7 變參函數 1425.8 延后函數調用 1435.9 崩潰 1485.10 恢復 151第6章 方法 1556.1 方法聲明 1556.2 帶有指針接收器的方法 1586.3 包含嵌入結構體的復合類型 1616.4 作為值和表達式的方法 1646.5 示例:位向量類型 1656.6 封裝 168第7章 接口 1717.1 作為規約的接口 1717.2 接口類型 1747.3 接口約定的達成 1757.4 使用flag.value進行標志位分析 1797.5 作為值的接口 1817.6 使用sort.interface進行排序 1867.7 http.handler接口 1917.8 錯誤接口 1967.9 示例:表達式評估器 1977.10 類型斷言 2057.11 使用類型斷言分辨錯誤 2067.12 使用接口類型斷言查詢行為 2087.13 按類型的程序分支 2107.14 示例:基于標記符號的xml解碼 2137.15 幾句建議 216第8章 goroutine和信道 2178.1 goroutine 2178.2 示例:并發時鐘服務器 2198.3 示例:并發回聲服務器 2228.4 信道 2258.5 并行循環 2348.6 示例:并發web爬蟲 2398.7 使用select實現多工 2448.8 示例:并發目錄遍歷 2478.9 取消執行 2518.10 示例:聊天服務器 253第9章 使用共享變量實現并發 2579.1 競險 2579.2 互斥量:sync.mutex 2629.3 讀寫互斥量:sync.rwmutex 2669.4 內存同步 2679.5 緩式初始化:sync.once 2689.6 競險檢測器 2719.7 示例:并發無阻塞式高速緩存 2729.8 goroutine和線程 280第10章 包和go工具 28310.1 概述 28310.2 導入路徑 28410.3 包聲明 28510.4 導入聲明 28510.5 空導入 28610.6 包和命名 28910.7 go工具 290第11章 測試 30111.1 go test工具 30211.2 測試函數 30211.3 覆蓋率 31811.4 性能基準函數 32111.5 性能剖析 32311.6 示例函數 326第12章 反射 32912.1 為什么會引入反射概念 32912.2 reflect.type和reflect.value 33012.3 遞歸值輸出display 33312.4 示例:對s-表達式編碼 33812.5 使用reflect.value給變量設置值 34112.6 示例:對s-表達式解碼 34412.7 訪問結構體域標簽 34812.8 列出類型的方法 35112.9 幾句忠告 352第13章 低階程序設計 35313.1 unsafe.sizeof、alignof和offsetof 35413.2 unsafe.pointer 35613.3 示例:深等價 35813.4 使用cgo調用c代碼 36113.5 再來幾句忠告 3661. tutoria 11.1. hello, world11.2.?command?l?inearguments?41.3.?findingdup?lic?atelines?81.4.?animated?gifs?131.5.?fetchingaurl?151.6.?fetchingurls?con?cur?rently171.7.?awe?bserver?191.8.?loose?end?s232.?2.?programstr?ucture272.1.?names?272.2.?declarat?ions?282.3.?var?iables?302.4.?assig?nments?362.5.?typ?edecl?arat?ions?392.6.?packages?andfiles?412.7.?scope?453.?basic?data?typ?es513.1.?int?egers?513.2.?float?ing?point?numbers?563.3.?complex?numbers?613.4.?boole?ans633.5.?str?ings643.6.?con?stants754.?com?positetyp?es814.1.?arrays?814.2.?slices?844.3.?maps?934.4.?str?ucts994.5.?json1074.6.?text?andhtmltempl?ates1135.?func?tions?1195.1.?functiondeclarat?ions?1195.2.?rec?ursio 1215.3..multiplereturn values.124 5.4..errors 127 5.5..functionvalues.132 5.6..anonymous functions.135 5.7..variadic.functions.142 5.8..deferred.functioncalls 143 5.9..panic.148 5.10..recover 151 6..methods 155 6.1..method.declarations.155 6.2..methodswithapointerreceiver 158 6.3..composingtypesby.struct.embedding 161 6.4..method.values.andexpressions.164 6.5..example:.bit.vector.type 165 6.6..encapsulation 168 7..interfaces 171 7.1..interfaces.as.contracts 171 7.2..interface.types 174 7.3..interface.satisfaction 175 7.4..parsingflags.withflag.value 179 7.5..interface.values.181 7.6..sortingwithsort.interface 186 7.7..the http.handler interface.191 7.8..the error interface.196 7.9..example:.expressionevaluator 197 7.10..type assertions.205 7.11..discriminatingerrorswith.typeassertions.206 7.12..queryingbehaviorswith.interface.typeassertions.208 7.13..type switches 210 7.14..example:.token-based.xml.decoding 213 7.15..afew words.ofadvice.216 8..goroutines.and.channels.217 8.1..goroutines 217 8.2..example:.concurrentclockserver.219 8.3..example:.concurrentecho server.222 8.4..channels 225 8.5..looping.inparallel 234 8.6..example:.concurrentweb.crawler 239 8.7..multiplexingwithselect 244 8.8..example:.concurrentdirectorytraversal 247 8.9..cancellation 251 8.10..example:.chatser.ver.253 9..concurrency.withshared.vari.ables 257 9.1..race.con.dit.ion.s 257 9.2..mut.ual.exc.lusion:sync.mutex 262 9.3..read/write.mut.exes:sync.rwmutex 266 9.4..memor.ysy.nchro.nizat.ion 267 9.5..lazy.initializat.ion:sync.once 268 9.6..therace.detec.tor.271 9.7..example:.con.cur.rentnon-blo.cking.cache.272 9.8..goroutinesand.threads.280 10..pack.ages and.the.gotool 283 10.1..int.roduc.tion 283 10.2..imp.ort.pat.hs 284 10.3..thepackagedeclarat.ion 285 10.4..imp.ort.declarat.ions.285 10.5..blank.imp.orts 286 10.6..packages.andnaming 289 10.7..thegotool 290 11..testing.301 11.1..the go.test to.ol 302 11.2. test func.tions.302 11.3..cov.erage 318 11.4. benchmark func.tions.321 11.5..pro.ling 323 11.6. example func.tions.326 12..re.ecti.on 329 12.1..why.re.ec.tion? 329 12.2. reflect.type and reflect.value 330 12.3. display,arec.ursivevalue.print.er 333 12.4..example:.enco.dings-e.xpressions.338 12.5..setting.var.iables.wit.hreflect.value 341 12.6..example:.decodings-e.xpressions.344 12.7..accessingstr.uct.field.tags.348 12.8..displaying.the.met.hodsofatyp.e 351 12.9..awo.rdofcaution.352 13..low-l.evel.pro.gramming 353 13.1. unsafe.sizeof, alignof,and offsetof 354 13.2. unsafe.pointer 356 13.3..example:.deepequivalence.358 13.4..cal.lingccodewit.hcgo 361 13.5..another.wordofcaution.366
展開全部
書友推薦
- >
巴金-再思錄
- >
山海經
- >
小考拉的故事-套裝共3冊
- >
二體千字文
- >
煙與鏡
- >
唐代進士錄
- >
大紅狗在馬戲團-大紅狗克里弗-助人
- >
人文閱讀與收藏·良友文學叢書:一天的工作
本類暢銷