2021-34
有經驗的Programmer 要學Go 先讀這本 免得氣死
"A famus joke that the go language designer ignore all programming language techniqe invented after 1980!"
Tanmay 故意說一些Go設計上的問題 避談Array/Slice
:= 是個惡名昭彰的operator . Inteface的怪癖
Goroutine的限制
讓學過Swift, Kotlin, Rust 等Modern Language的人
比較能夠接受Go的Idea.
還好我是硬體出身 對於Goroutine只能用Channel control 感覺沒啥不好
PS.Go Multi-Thread Support:
1.Share Variable
2.Mutex Lock
3.Reader/Writer Lock
4.Wait Group ex. Wait for thread to stop
5.Channel ex. Pipeline process
6.Condition Wait Mutex
Comments