ubuntu下c/c++/python/go编译运行
Posted KumataのBloG
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu下c/c++/python/go编译运行相关的知识,希望对你有一定的参考价值。
C语言: .c文件 编译器gcc
//my_code下hello.c文件
$sudo apt install gcc $gcc hello.c -o hello $./hello
C++: .cpp文件 编译器g++
//my_code下hello.cpp文件
$sudo apt install g++ $gcc hello.cpp -o hellocpp $./hellocpp
python: .py文件 不用编译
//my_code下hello.py文件
$python3 hello.py
go: .go文件 编译器go-build
//go_code/src/test/下main.go文件
-go_code 工程文件夹
-src 项目源代码文件夹
-test 测试代码文件夹
-main.go 测试代码
目录结构学习:Go目录结构
$sudo install golang-go $go build //当前目录的代码文件编译成一个可执行文件test,执行与mian.go同目录的src/test/test $./test
以上是关于ubuntu下c/c++/python/go编译运行的主要内容,如果未能解决你的问题,请参考以下文章