您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關(guān)如何在Windows環(huán)境中使用go語言寫程序,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
一、安裝go語言:
1、安裝MinGW
2、下載源碼
進入C:\MinGW,雙擊mintty開啟終端窗口;
執(zhí)行"hg clone -u release https://go.googlecode.com/hg/ /c/go"下載源碼;
3、編譯源碼
執(zhí)行"cd /c/go/src"進入src目錄,執(zhí)行"./all.bash"進行編譯;
4、設(shè)置環(huán)境變量
編譯完成后,會在C:\go\bin下生成二進制文件,在PATH中加入"C:\go\bin;";
二、寫go代碼:
文件:test.go
代碼如下:
復(fù)制代碼 代碼如下:
package main
import "fmt"
func main() {
fmt.Println("Test")
}
三、生成可執(zhí)行文件(以我機器為例,具體可參考官網(wǎng)文檔):
編譯:8g -o test.8 test.go
鏈接:8l -o test.exe test.8
執(zhí)行test.exe,會輸出:
Test
四、批量生成可執(zhí)行文件
如果寫的測試代碼多的話,每一次都要輸入兩遍命令,感覺很不方便。
所以我決定寫一個腳本,讓它自動遍歷當(dāng)前目錄下所有以".go"結(jié)尾 的文件,對文件進行編譯生成目標(biāo)文件、鏈接生成可執(zhí)行文件,然后刪除目標(biāo)文件。這個腳本是仿照之前的文章(https://www.jb51.net/article/61951.htm)中生成Makefile的原理寫的,功能有限,適合寫測試代碼的時候用。
這里是代碼(python腳本):
復(fù)制代碼 代碼如下:
'''
File : compileGo.py
Author : Mike
E-Mail : Mike_Zhang@live.com
'''
import os
srcSuffix = '.go'
dstSuffix = '.exe'
cmdCompile = "8g"
cmdLink = "8l"
fList = []
for dirPath,dirNames,fileNames in os.walk('.'):
for file in fileNames:
name,extension = os.path.splitext(file)
if extension == srcSuffix :
fList.append(name)
tmpName = name + '.8' # temp file
strCompile = '%s -o %s %s ' % (cmdCompile,tmpName,file)
print strCompile
os.popen(strCompile) # compile
strLink = '%s -o %s %s' % (cmdLink,name+dstSuffix,tmpName)
print strLink
os.popen(strLink) # link
os.remove(tmpName) # remove temp file
break # only search the current directory
看完上述內(nèi)容,你們對如何在Windows環(huán)境中使用go語言寫程序有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。