博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
golang 标准命令详解
阅读量:7120 次
发布时间:2019-06-28

本文共 1740 字,大约阅读时间需要 5 分钟。

hot3.png

去年工作原因,接触到了golang,今年开始,自身感兴趣,开始在自学Golang。首先简短介绍下golang,Go语言是Google开发的一种编译型,并发型,具有垃圾回收功能的系统编程语言,官方支持FreeBSD,Linux,Mac OS和Windows四大操作系统。其出于Google公司,由众多业界顶尖认识主持设计和开发,其设计动机就是为了解决服务器端开发中遇到的实际问题,加上开源属性,吸引了越来越多的开发人士参与。

 

golang的优点就不一一列举了,本人对其高并发、多核支持,轻量级的goroutine和channel设计情有独钟。相关golang方面的学习资料可推荐官方网站、《go语言圣经》等等,github上可研读相关优秀golang开源项目

 

本篇文章主要讲述golang的命令工具,大致描述下golang的相关命令,以便在开发过程中,好好利用工具,事半功倍。

 

Go 语言自带了一套完整的命令操作工具,我们可以在命令行中执行go来查看相关帮助

Usage:    go command [arguments]The commands are:    build       compile packages and dependencies    clean       remove object files    doc         show documentation for package or symbol    env         print Go environment information    fix         run go tool fix on packages    fmt         run gofmt on package sources    generate    generate Go files by processing source    get         download and install packages and dependencies    install     compile and install packages and dependencies    list        list packages    run         compile and run Go program    test        test packages    tool        run specified go tool    version     print Go version    vet         run go tool vet on packagesUse "go help [command]" for more information about a command.Additional help topics:    c           calling between Go and C    buildmode   description of build modes    filetype    file types    gopath      GOPATH environment variable    environment environment variables    importpath  import path syntax    packages    description of package lists    testflag    description of testing flags    testfunc    description of testing functionsUse "go help [topic]" for more information about that topic.

这些命令对于我们平时编写的代码非常有用,后续我们逐一详细地来了解一些常用命令。

转载于:https://my.oschina.net/SysuHuyh5LoveHqq/blog/876339

你可能感兴趣的文章
纪念我人生中第一个merge into语句
查看>>
团队报告
查看>>
Linux下启动mongodb
查看>>
重温Android——调节屏幕亮度
查看>>
设计模式六大原则(1):单一职责原则
查看>>
当机器人具有自我知觉,并能自适应环境,真的不可怕吗?
查看>>
selenium环境搭建,浏览器驱动安装
查看>>
C# 递归函数详细介绍及使用方法
查看>>
web api 开发之 filter
查看>>
第十章:内核同步方法
查看>>
SQL中创建外键约束
查看>>
【网络编程】网络协议简析
查看>>
PHP 中Cookie和Session的使用
查看>>
Struts2注解
查看>>
Vue.js 判断对象属性是否存,不存在添加
查看>>
第十一周作业
查看>>
2-设置文件类型扩展名
查看>>
[python基础]关于中文编码和解码那点事儿
查看>>
MySQL集群架构-DRBD+headbeat +lvs+keepalived
查看>>
[LUOGU] P2886 [USACO07NOV]牛继电器Cow Relays
查看>>