偷偷摘套内射激情视频,久久精品99国产国产精,中文字幕无线乱码人妻,中文在线中文a,性爽19p

Go 語言的演化歷程

開發(fā) 前端
本文來自Google的Golang語言設(shè)計(jì)者之一Rob Pike大神在GopherCon2014大會上的開幕主題演講資料“Hello, Gophers!”。Rob大神在這次分 享中用了兩個生動的例子講述了Golang的演化歷程,總結(jié)了Golang到目前為止的成功因素,值得廣大Golang Programmer & Beginner學(xué)習(xí)和了解。這里也用了”Golang的演化歷程”作為標(biāo)題。

本文來自Google的Golang語言設(shè)計(jì)者之一Rob Pike大神在GopherCon2014大會上的開幕主題演講資料“Hello, Gophers!”。Rob大神在這次分 享中用了兩個生動的例子講述了Golang的演化歷程,總結(jié)了Golang到目前為止的成功因素,值得廣大Golang Programmer & Beginner學(xué)習(xí)和了解。這里也用了”Golang的演化歷程”作為標(biāo)題。

1、Hello Gophers!

  1. package main 
  2.   
  3. import "fmt" 
  4.   
  5. func main() { 
  6.     fmt.Printf("Hello, gophers!\n"

Rob大神的見面禮,后續(xù)會有針對這段的演化歷史的陳述。

2、歷史

這是一個歷史性的時刻。

Golang已經(jīng)獲得了一定的成功,值得擁有屬于自己的技術(shù)大會。

3、成功

促成這份成功的因素有許多:

– 功能

– 缺少的功能

– 功能的組合

– 設(shè)計(jì)

– 人

– 時間

4、案例學(xué)習(xí):兩段程序

我們來近距離回顧兩段程序。

***個是你見過的***個Go程序,是屬于你的歷史時刻。

第二個是我們見過的***個Go程序,是屬于全世界所有Gophers的歷史時刻。

先看***個“hello, world”

5、hello.b

  1. main( ) { 
  2.     extrn a, b, c; 
  3.     putchar(a); putchar(b); putchar(c); putchar('!*n'); 
  4. 'hell'
  5. 'o, w'
  6. 'orld'

上面這段代碼首先出現(xiàn)在1972年Brian W. Kernighan的B語言教程中(也有另外一說是出現(xiàn)在那之前的BCPL語言中)。

6、hello.c

  1. main() 
  2.     printf("hello, world"); 

上面這段代碼出現(xiàn)在1974年Brian W. Kernighan編寫的《Programming in C: A Tutorial》中。這份教程當(dāng)時是作為Unix v5文檔的一部分。

7、hello.c

  1. main() 
  2.     printf("hello, world\n"); //譯注:與上面的hello.c相比,多了個換行符\n輸出 

這段代碼***出現(xiàn)在1978年Brian W. Kernighan和Dennis M. Ritchie合著的《The C Programming Language》一書中。

8、hello.c, 標(biāo)準(zhǔn)C草案

  1. #include <stdio.h> //譯注:與上面hello.c相比, 多了這個頭文件包含 
  2.   
  3. main() 
  4.     printf("hello, world\n"); 

這段代碼出現(xiàn)在1988年Brian W. Kernighan和Dennis M. Ritchie合著的《The C Programming Language》第二版一書中,基于標(biāo)準(zhǔn)C草案。

9、hello.c,標(biāo)準(zhǔn)C89

  1. #include <stdio.h> 
  2.   
  3. main(void//譯注:與上面hello.c相比,多了個void 
  4.     printf("hello, world\n"); 

這段代碼出現(xiàn)在1988年Brian W. Kernighan和Dennis M. Ritchie合著的《The C Programming Language》第二版第二次修訂中。

10、一兩代之后…

(省略所有中間語言)

關(guān)于Golang的討論開始于2007年年末。

***版語言規(guī)范起草于2008年3月份。

用于實(shí)驗(yàn)和原型目的的編譯器開發(fā)工作已經(jīng)展開。

最初的編譯器輸出的是C代碼。

語言規(guī)范一形成,我們就重寫了編譯器,輸出本地代碼(機(jī)器碼)。

#p#

11、hello.go, 2008年6月6日

  1. package main 
  2.   
  3. func main() int { 
  4.     print "hello, world\n"
  5.     return 0; 

12、hello.go,2008年6月27日

  1. package main 
  2.   
  3. func main() { 
  4.     print "hello, world\n"

當(dāng)main函數(shù)返回,程序調(diào)用exit(0)。

13、hello.go,2008年8月11日

  1. package main 
  2.   
  3. func main() { 
  4.     print("hello, world\n"); 

print調(diào)用加上了括號,這時print是一個函數(shù),不再是一個原語。

14、hello.go,2008年10月24日

  1. package main 
  2.   
  3. import "fmt" 
  4.   
  5. func main() { 
  6.     fmt.printf("hello, world\n"); 

我們熟知并喜歡的printf來了。

15、hello.go,2009年1月15日

  1. package main 
  2.   
  3. import "fmt" 
  4.   
  5. func main() { 
  6.     fmt.Printf("hello, world\n"); 

頭母大寫的函數(shù)名用作才是導(dǎo)出的符號。

16、hello.go, 2009年12約11日

  1. package main 
  2.   
  3. import "fmt" 
  4.   
  5. func main() { 
  6.     fmt.Printf("hello, world\n"

不再需要分號。

這是在2009年11月10日Golang開發(fā)發(fā)布后的一次重要改變。

這也是當(dāng)前版本的hello, world

我們花了些時間到達(dá)這里(32年!)

都是歷史了!

17、不僅僅有C

我們從”C”開始,但Go與C相比有著巨大的不同。

其他一些語言影響和貫穿于Go的設(shè)計(jì)當(dāng)中。

C: 語句和表達(dá)式語法

Pascal: 聲明語法

Modula 2, Oberon 2:包

CSP, Occam, Newsqueak, Limbo, Alef: 并發(fā)

BCPL: 分號規(guī)則

Smalltalk: 方法(method)

Newsqueak: <-, :=

APL: iota

等等。也有一些是全新發(fā)明的,例如defer、常量。

還有一些來自其他語言的優(yōu)點(diǎn)和缺點(diǎn):

C++, C#, Java, JavaScript, LISP, Python, Scala, …

18、hello.go,Go 1版

將我們帶到了今天。

  1. package main 
  2.   
  3. import "fmt" 
  4.   
  5. func main() { 
  6.     fmt.Println("Hello, Gophers (some of whom know 中文)!"

我們來深入挖掘一下,把這段代碼做一個拆解。

19、Hello, World的16個tokens

  1. package 
  2. main 
  3. import 
  4. "fmt" 
  5. func 
  6. main 
  7. fmt 
  8. Println 
  9. "Hello, Gophers (some of whom know 中文)!" 

20、package

早期設(shè)計(jì)討論的主要話題:擴(kuò)展性的關(guān)鍵

package是什么?來自Modula-2等語言的idea

為什么是package?

– 擁有編譯構(gòu)建所需的全部信息

– 沒有循環(huán)依賴(import)

– 沒有子包

– 包名與包路徑分離

– 包級別可見性,而不是類型級別

– 在包內(nèi)部,你擁有整個語言,在包外部,你只擁有包許可的東西。

#p#

21、main

一個C語言遺留風(fēng)范盡顯之處

最初是Main,原因記不得了。

主要的包,main函數(shù)

很特別,因?yàn)樗浅跏蓟瘶?initialization tree)的根(root)。

22、import

一種加載包的機(jī)制

通過編譯器實(shí)現(xiàn)(有別于文本預(yù)處理器。譯注:C語言的include是通過preprocessor實(shí)現(xiàn)的)

努力使其高效且線性

導(dǎo)入的一個包,而不是一個標(biāo)識符(identifiers)集合(譯注:C語言的include是將頭文件里的標(biāo)識符集合引入)

至于export,它曾經(jīng)是一個關(guān)鍵字。

23、”fmt”

包路徑(package path)只是一個字符串,并非標(biāo)識符的列表。

讓語言避免定義它的含義 – 適應(yīng)性。(Allows the language to avoid defining what it means—adaptability)

從一開始就想要一個URL作為一個選項(xiàng)。(譯注:類似import “github.com/go/tools/xxx)

可以應(yīng)付將來的發(fā)展。

24、func

一個關(guān)鍵字,用于引入函數(shù)(類型、變量、常量),易于編譯器解析。

對于函數(shù)字面量(閉包)而言,易于解析非常重要。

順便說一下,最初這個關(guān)鍵字不是func,而是function。

小插曲:

Mail thread from February 6, 2008

From: Ken Thompson <ken@google.com>

To: gri, r

larry and sergey came by tonight. we 
talked about go for more than an hour. 
they both said they liked it very much.

p.s. one of larrys comments was “why isnt function spelled func?”

From: Rob Pike <r@google.com>

To: ken, gri

fine with me. seems compatible with ‘var’.

anyway we can always say, “larry said to call it ‘func’”

25、main

程序執(zhí)行的起點(diǎn)。除非它不是。(譯注:main不是起點(diǎn),rob大神的意思是不是指下列情形,比如go test測試包,在google app engine上的go程序不需要main)

將初始化與正常執(zhí)行分離,早期計(jì)劃之中的。

初始化在哪里發(fā)生的?(譯注:說的是package內(nèi)的func init() {..}函數(shù)吧)

回到包設(shè)計(jì)。(譯注:重溫golang的package設(shè)計(jì)思想)

26、()

看看,沒有void

main沒有返回值,由運(yùn)行時來處理main的返回后的事情。

沒有函數(shù)參數(shù)(命令行選項(xiàng)通過os包獲?。?/p>

沒有返回值

返回值以及語法

27、{

用的是大括號,而不是空格(譯注:估計(jì)是與python的空格縮進(jìn)對比)

同樣也不是方括號。

為什么在括號后放置換行符(newline)?

28、fmt

所有導(dǎo)入的標(biāo)識符均限定于其導(dǎo)入的包。(All imported identifiers are qualified by their import.)

每個標(biāo)識符要么是包或函數(shù)的本地變量,要么被類型或?qū)氚薅ā?/p>

對代碼可讀性的重大影響。

為什么是fmt,而不是format?

29、.

句號token在Go中有多少使用?(很多)

a.B的含義需要使用到類型系統(tǒng)

但這對于人類來說非常清晰,讀起來也非常容易。

針對指針的自動轉(zhuǎn)換(沒有->)。

30、Println

Println,不是println,頭母大寫才是導(dǎo)出符號。

知道它是反射驅(qū)動的(reflection-driven)

可變參數(shù)函數(shù)

參數(shù)類型是(…); 2010年2月1日變成(…interface{})

#p#

31、(

傳統(tǒng)函數(shù)語法

32、”Hello, Gophers (some of whom know 中文)!”

UTF-8編碼的源碼輸入。字符串字面量也自動是utf8編碼格式的。

但什么是字符串(string)呢?

首批寫入規(guī)范的語法規(guī)則,今天很難改變了。(blog.golang.org/strings)

33、)

沒有分號

在go發(fā)布后不久我們就去除了分號

早期曾胡鬧地嘗試將它們(譯注:指得是括號)去掉

最終接受了BCPL的方案

34、}

***輪結(jié)束。

旁白:還沒有討論到的

– 類型

– 常量

– 方法

– interface

– 庫

– 內(nèi)存管理

– 并發(fā)(接下來將討論)

外加工具,生態(tài)系統(tǒng),社區(qū)等。

語言是核心,但也只是我們故事的一部分。

35、成功

要素:

– 站在巨人的肩膀上(building on history)

– 經(jīng)驗(yàn)之作(building on experience) 譯注:最初的三個神級語言設(shè)計(jì)者

– 設(shè)計(jì)過程

– 早期idea提煉到最終的方案中

– 由一個小團(tuán)隊(duì)專門集中精力做

最終:承諾

Go 1.0鎖定了語言核心與標(biāo)準(zhǔn)庫。

36、另一輪

讓我們看第二個程序的類似演化過程。

37、問題:素?cái)?shù)篩(Prime sieve)

問題來自于Communicating Sequential Processes, by C. A. R. Hoare, 1978。

“問題:以升序打印所有小于10000的素?cái)?shù)。使用一個process數(shù)組:SIEVE,其中每個process從其前驅(qū)元素輸入一個素?cái)?shù)并打印 它。接下 來這個process從其前驅(qū)元素接收到一個升序數(shù)字流并將它們傳給其后繼元素,這個過程會剔除掉所有是最初素?cái)?shù)整數(shù)倍的數(shù)字。

38、解決方案

在1978年的CSP論文中。(注意不是Eratosthenes篩)

這個優(yōu)美的方案是由David Gries貢獻(xiàn)出來的。

39、CSP

在Hoare的CSP論文中:

  1. [SIEVE(i:1..100):: 
  2.     p,mp:integer; 
  3.     SIEVE(i - 1)?p; 
  4.     print!p; 
  5.     mp := p; comment mp is a multiple of p; 
  6. *[m:integer; SIEVE(i - 1)?m → 
  7.     *[m > mp → mp := mp + p]; 
  8.     [m = mp → skip 
  9.     ||m < mp → SIEVE(i + 1)!m 
  10. ]   ] 
  11. ||SIEVE(0)::print!2; n:integer; n := 3; 
  12.     *[n < 10000 → SIEVE(1)!n; n := n + 2] 
  13. ||SIEVE(101)::*[n:integer;SIEVE(100)?n → print!n] 
  14. ||print::*[(i:0..101) n:integer; SIEVE(i)?n → ...] 

沒有channel。能處理的素?cái)?shù)的個數(shù)是在程序中指定的。

40、Newsqueak

circa 1988。

Rob Pike語言設(shè)計(jì),Tom Cargill和Doug McIlroy實(shí)現(xiàn)。

使用了channels,這樣個數(shù)是可編程的。(channel這個idea從何而來?)

  1. counter:=prog(end: int, c: chan of int
  2.     i:int
  3.     for(i=2; i<end; i++) 
  4.         c<-=i; 
  5. }; 
  6.   
  7. filter:=prog(prime: int, listen: chan of int, send: chan of int
  8.     i:int
  9.     for(;;) 
  10.         if((i=<-listen)%prime) 
  11.             send<-=i; 
  12. }; 
  13.   
  14. sieve:=prog(c: chan of int
  15.     for(;;){ 
  16.         prime:=<-c; 
  17.         print(prime, " "); 
  18.         newc:=mk(chan of int); 
  19.         begin filter(prime, c, newc); 
  20.         c=newc; 
  21.     } 
  22. }; 
  23.   
  24. count:=mk(chan of int); 
  25.   
  26. begin counter(10000, count); 
  27. begin sieve(count); 
  28. ""

#p#

41、sieve.go,2008年3月5日

使用go規(guī)范編寫的***個版本,可能是第二個由go編寫的重要程序。

>用于發(fā)送;<用于接收。Channel是指針。Main是頭字母大寫的。

  1. package Main 
  2.   
  3. // Send the sequence 2, 3, 4, … to channel 'ch'. 
  4. func Generate(ch *chan> int) { 
  5.     for i := 2; ; i++ { 
  6.         >ch = i;    // Send 'i' to channel 'ch'. 
  7.     } 
  8.   
  9. // Copy the values from channel 'in' to channel 'out', 
  10. // removing those divisible by 'prime'. 
  11. func Filter(in *chan< int, out *chan> int, prime int) { 
  12.     for ; ; { 
  13.         i := <in;    // Receive value of new variable 'i' from 'in'. 
  14.         if i % prime != 0 { 
  15.             >out = i;    // Send 'i' to channel 'out'. 
  16.         } 
  17.     } 
  18.   
  19. // The prime sieve: Daisy-chain Filter processes together. 
  20. func Sieve() { 
  21.     ch := new(chan int);  // Create a new channel. 
  22.     go Generate(ch);      // Start Generate() as a subprocess. 
  23.     for ; ; { 
  24.         prime := <ch; 
  25.         printf("%d\n", prime); 
  26.         ch1 := new(chan int); 
  27.         go Filter(ch, ch1, prime); 
  28.         ch = ch1; 
  29.     } 
  30.   
  31. func Main() { 
  32.     Sieve(); 

42. sieve.go,2008年7月22日

-<用于發(fā)送;-<用于接收。Channel仍然是指針。但現(xiàn)在main不是大寫字母開頭的了。

  1. package main 
  2.   
  3. // Send the sequence 2, 3, 4, … to channel 'ch'. 
  4. func Generate(ch *chan-< int) { 
  5.     for i := 2; ; i++ { 
  6.         ch -< i    // Send 'i' to channel 'ch'. 
  7.     } 
  8.   
  9. // Copy the values from channel 'in' to channel 'out', 
  10. // removing those divisible by 'prime'. 
  11. func Filter(in *chan<- int, out *chan-< int, prime int) { 
  12.     for { 
  13.         i := <-in;    // Receive value of new variable 'i' from 'in'. 
  14.         if i % prime != 0 { 
  15.             out -< i    // Send 'i' to channel 'out'. 
  16.         } 
  17.     } 
  18.   
  19. // The prime sieve: Daisy-chain Filter processes together. 
  20. func Sieve() { 
  21.     ch := new(chan int);  // Create a new channel. 
  22.     go Generate(ch);      // Start Generate() as a subprocess. 
  23.     for { 
  24.         prime := <-ch; 
  25.         printf("%d\n",    prime); 
  26.         ch1 := new(chan int); 
  27.         go Filter(ch, ch1, prime); 
  28.         ch = ch1 
  29.     } 
  30.   
  31. func main() { 
  32.     Sieve() 

43、sieve.go,2008年9月17日

通信操作符現(xiàn)在是<-。channel仍然是指針。

  1. package main 
  2.   
  3. // Send the sequence 2, 3, 4, … to channel 'ch'. 
  4. func Generate(ch *chan <- int) { 
  5.     for i := 2; ; i++ { 
  6.         ch <- i  // Send 'i' to channel 'ch'. 
  7.     } 
  8.   
  9. // Copy the values from channel 'in' to channel 'out', 
  10. // removing those divisible by 'prime'. 
  11. func Filter(in *chan <- int, out *<-chan int, prime int) { 
  12.     for { 
  13.         i := <-in;  // Receive value of new variable 'i' from 'in'. 
  14.         if i % prime != 0 { 
  15.             out <- i  // Send 'i' to channel 'out'. 
  16.         } 
  17.     } 
  18.   
  19. // The prime sieve: Daisy-chain Filter processes together. 
  20. func Sieve() { 
  21.     ch := new(chan int);  // Create a new channel. 
  22.     go Generate(ch);      // Start Generate() as a subprocess. 
  23.     for { 
  24.         prime := <-ch; 
  25.         print(prime, "\n"); 
  26.         ch1 := new(chan int); 
  27.         go Filter(ch, ch1, prime); 
  28.         ch = ch1 
  29.     } 
  30.   
  31. func main() { 
  32.     Sieve() 

44、sieve.go,2009年1月6日

引入了make內(nèi)置操作符。沒有指針。編碼錯誤?。ㄓ袀€*被留下了,錯誤的參數(shù)類型)

  1. package main 
  2.   
  3. // Send the sequence 2, 3, 4, … to channel 'ch'. 
  4. func Generate(ch chan <- int) { 
  5.     for i := 2; ; i++ { 
  6.         ch <- i  // Send 'i' to channel 'ch'. 
  7.     } 
  8.   
  9. // Copy the values from channel 'in' to channel 'out', 
  10. // removing those divisible by 'prime'. 
  11. func Filter(in chan <- int, out *<-chan int, prime int) { 
  12.     for { 
  13.         i := <-in;  // Receive value of new variable 'i' from 'in'. 
  14.         if i % prime != 0 { 
  15.             out <- i  // Send 'i' to channel 'out'. 
  16.         } 
  17.     } 
  18.   
  19. // The prime sieve: Daisy-chain Filter processes together. 
  20. func Sieve() { 
  21.     ch := make(chan int);  // Create a new channel. 
  22.     go Generate(ch);       // Start Generate() as a subprocess. 
  23.     for { 
  24.         prime := <-ch; 
  25.         print(prime, "\n"); 
  26.         ch1 := make(chan int); 
  27.         go Filter(ch, ch1, prime); 
  28.         ch = ch1 
  29.     } 
  30.   
  31. func main() { 
  32.     Sieve() 

45、sieve.go,2009年9月25日

***個正確的現(xiàn)代版本。同樣,大寫頭母不見了,使用了fmt。

  1. package main 
  2.   
  3. import "fmt" 
  4.   
  5. // Send the sequence 2, 3, 4, … to channel 'ch'. 
  6. func generate(ch chan<- int) { 
  7.     for i := 2; ; i++ { 
  8.         ch <- i;    // Send 'i' to channel 'ch'. 
  9.     } 
  10.   
  11. // Copy the values from channel 'in' to channel 'out', 
  12. // removing those divisible by 'prime'. 
  13. func filter(src <-chan int, dst chan<- int, prime int) { 
  14.     for i := range src {    // Loop over values received from 'src'. 
  15.         if i%prime != 0 { 
  16.             dst <- i;    // Send 'i' to channel 'dst'. 
  17.         } 
  18.     } 
  19.   
  20. // The prime sieve: Daisy-chain filter processes together. 
  21. func sieve() { 
  22.     ch := make(chan int);  // Create a new channel. 
  23.     go generate(ch);       // Start generate() as a subprocess. 
  24.     for { 
  25.         prime := <-ch; 
  26.         fmt.Print(prime, "\n"); 
  27.         ch1 := make(chan int); 
  28.         go filter(ch, ch1, prime); 
  29.         ch = ch1; 
  30.     } 
  31.   
  32. func main() { 
  33.     sieve(); 

46、sieve.go,2009年12月10日

分號不見了。程序已經(jīng)與現(xiàn)在一致了。

  1. package main 
  2.   
  3. import "fmt" 
  4.   
  5. // Send the sequence 2, 3, 4, … to channel 'ch'. 
  6. func generate(ch chan<- int) { 
  7.     for i := 2; ; i++ { 
  8.         ch <- i  // Send 'i' to channel 'ch'. 
  9.     } 
  10.   
  11. // Copy the values from channel 'src' to channel 'dst', 
  12. // removing those divisible by 'prime'. 
  13. func filter(src <-chan int, dst chan<- int, prime int) { 
  14.     for i := range src {  // Loop over values received from 'src'. 
  15.         if i%prime != 0 { 
  16.             dst <- i  // Send 'i' to channel 'dst'. 
  17.         } 
  18.     } 
  19.   
  20. // The prime sieve: Daisy-chain filter processes together. 
  21. func sieve() { 
  22.     ch := make(chan int)  // Create a new channel. 
  23.     go generate(ch)       // Start generate() as a subprocess. 
  24.     for { 
  25.         prime := <-ch 
  26.         fmt.Print(prime, "\n"
  27.         ch1 := make(chan int
  28.         go filter(ch, ch1, prime) 
  29.         ch = ch1 
  30.     } 
  31.   
  32. func main() { 
  33.     sieve() 

這個優(yōu)美的方案來自于幾十年的設(shè)計(jì)過程。

47、旁邊,沒有討論到的

select

真實(shí)并發(fā)程序的核心連接器(connector)

最初起源于Dijkstra的守衛(wèi)命令(guarded command)

在Hoare的CSP理論實(shí)現(xiàn)真正并發(fā)。

經(jīng)過Newsqueak、Alef、Limbo和其他語言改良后

2008年3月26日出現(xiàn)在Go版本中。

簡單,澄清,語法方面的考慮。

48、穩(wěn)定性

Sieve程序自從2009年末就再未改變過。– 穩(wěn)定!

開源系統(tǒng)并不總是兼容和穩(wěn)定的。

但,Go是。(兼容和穩(wěn)定的)

這是Go成功的一個重要原因。

49、趨勢

圖數(shù)據(jù)展示了Go 1.0發(fā)布后Go語言的爆發(fā)。

50、成功

Go成功的元素:

顯然的:功能和工具。

* 并發(fā)

* 垃圾回收

* 高效的實(shí)現(xiàn)

* 給人以動態(tài)類型體驗(yàn)的靜態(tài)類型系統(tǒng)

* 豐富但規(guī)模有限的標(biāo)準(zhǔn)庫

* 工具化

* gofmt

* 在大規(guī)模系統(tǒng)中的應(yīng)用

不那么顯然的:過程

* 始終聚焦最初的目標(biāo)

* 在凍結(jié)后的集中開發(fā)

* 小核心團(tuán)隊(duì)易于取得一致

* 社區(qū)的重要貢獻(xiàn)

* 豐富的生態(tài)系統(tǒng)

總之,開源社區(qū)共享了我們的使命,聚焦于為當(dāng)今的世界設(shè)計(jì)一門語言。

原文出處:tonybai.com

責(zé)任編輯:張偉 來源: 開源中國社區(qū)
相關(guān)推薦

2023-05-31 18:58:16

得物人事系統(tǒng)時間軸

2010-03-10 18:12:50

Python編程語言

2024-04-26 08:17:09

GoGoogle項(xiàng)目

2012-03-07 11:25:58

編程語言

2012-10-08 09:25:59

GoGo語言開發(fā)語言

2018-03-12 22:13:46

GO語言編程軟件

2021-11-29 00:18:30

Redis分布式

2023-12-30 10:22:57

Go語言函數(shù)開發(fā)

2011-11-16 09:00:39

編程語言

2024-05-13 10:54:39

UML系統(tǒng)SysML

2021-03-16 06:38:44

架構(gòu)分層插件化

2022-02-09 16:02:26

Go 語言ArraySlice

2024-04-07 11:33:02

Go逃逸分析

2013-05-28 09:43:38

GoGo語言并發(fā)模式

2021-07-15 23:18:48

Go語言并發(fā)

2019-02-11 08:32:22

編程語言Go

2023-12-21 07:09:32

Go語言任務(wù)

2011-01-05 10:58:05

Google Go

2021-04-13 07:58:42

Go語言函數(shù)

2021-04-07 09:02:49

Go 語言變量與常量
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號