Go 中的無實體函數
提供的程式碼呈現了一種特殊的情況,其中Floor 函數看起來是無實體的,缺少函數體。在檢查 math/floor.go 的原始碼時可能會遇到這種情況。
經過調查,很明顯這種現像是故意的。在 Go 中,允許使用彙編語言實作無實體函數。實際的實作可以在 Floor_ARCH.s 檔案中找到(例如,對於 AMD64)。
如 Go 規格所述:
A function declaration may omit the body. Such a declaration provides the signature for a function implemented outside Go, such as an assembly routine.
此規定允許低階函數在程式集中定義,同時保持一致、類型良好的 Go 介面。
以上是為什麼有些 Go 函數(例如 `math.Floor`)是無實體的?的詳細內容。更多資訊請關注PHP中文網其他相關文章!