golang能寫作業系統嗎
當然是可以的。
這是 2018 OSDI 上面的一篇 paper : The benefits and costs of writing a POSIX kernel in a high-level language。在這篇paper 中,作者就對比了用Go 語言和C 語言寫作業系統內核的區別,最後的結論是:
In experiments comparing nearly identical system call, page fault, and context switch code paths written in Go and C, the Go version was 5% to 15% slower.
在比較用Go和C編寫的幾乎相同的系統調用,頁面錯誤和上下文切換程式碼路徑的實驗中,Go版本的速度慢了5%至15%。
除此之外,Google 開源的 gvisor, Go 語言實現的使用者狀態的 "linux 核心",也可以了解一下。
相關推薦:golang教學
以上是golang能寫作業系統嗎的詳細內容。更多資訊請關注PHP中文網其他相關文章!