您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關(guān)linkname方法怎么在go語言中使用,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
在go語言的源碼中,會(huì)發(fā)現(xiàn)很多,代碼只有函數(shù)簽名,卻看不到函數(shù)體,如:
// src/os/proc.go 68行 func runtime_beforeExit() // implemented in runtime
此處我們只看到函數(shù)簽名,卻看不到函數(shù)體,全局搜了一把,發(fā)現(xiàn)它的函數(shù)體卻定義在src/runtime/proc.go
中
// os_beforeExit is called from os.Exit(0). //go:linkname os_beforeExit os.runtime_beforeExit func os_beforeExit() { if raceenabled { racefini() } }
它是通過go:linkname把函數(shù)簽名和函數(shù)體連接在一起的。那么我們?cè)诖a中,可以這樣實(shí)現(xiàn)么?既然庫函數(shù)中,可以這么用,那我們自己的代碼結(jié)構(gòu)中是不也可以這么用?以下通過實(shí)驗(yàn)的方式,一步一步的實(shí)現(xiàn)這樣的用法
創(chuàng)建項(xiàng)目目錄
$mkdir demo && cd demo
go mod初始化項(xiàng)目目錄
$go mod init demo
創(chuàng)建函數(shù)簽名pkg和函數(shù)體pkg
$mkdir hello $mkdir link
編寫測試代碼
$cd hello // 函數(shù)簽名 $vim hello.go package hello import ( _ "demo/link" ) func Hello() // 函數(shù)體 $vim link.go package link import _ "unsafe" //go:linkname helloWorld demo/hello.Hello func helloWorld() { println("hello world!") }
執(zhí)行代碼
$cd demo vim demo.go package main import ( "demo/hello" ) func main() { hello.Hello() }
編譯運(yùn)行
go run demo.go # demo/hello hello/hello.go:7:6: missing function body
在hello文件夾下添加aa.s的匯編文件標(biāo)示,便可以通過編譯執(zhí)行
$cd hello && touch aa.s $go run demo.go hello world!
以上就是linkname方法怎么在go語言中使用,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見到或用到的。希望你能通過這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。