GoLand创建项目过程

简介: GoLand创建项目过程

GoLand创建项目过程


简介:本文讲解如何用GoLand创建普通项目。


  1. 创建一个项目,把项目都统一的放到一个文件夹

  1. Environment处填写:GOPROXY=https://goproxy.cn,direct

  1. 创建的文件夹和文件名要一致,这样才能运行成功

  1. 在go语言中,所有包和变量都必须要引用,不然会报错,如果包没有引用需要前面


  1. 所以go语言一般是当需要用某个包的时候才引用

  1. 运行

  1. go语言程序运行过程分析
  • 运行过程

  • 通过go build命令可以生成exe文件,如果我们先编译生成了可执行女件,那么我们可以将该可执行文件拷贝到没有go开发环
    境的机器上,仍然可以运行


代码如下

package main

import (
  "fmt"
  _ "fmt"
)

func main() {
  fmt.Println("你好")
  fmt.Println("按下回车键以结束程序")
  fmt.Scanln()
}

  • 运行exe文件

  • 也可以直接输入go run指令在命名窗口运行,如果我们是直接go run go源代码,那么如果要在另外一个机器上这么运行,也需要go
    开发环境,否则无法执行。

  • 编译后的文件可以另外指定名字,使用go build -o命令

相关文章
|
6月前
|
Go 开发工具 git
GoLand创建Gin项目
GoLand创建Gin项目
91 0
|
Linux Go Docker
goland如何把go项目打包进docker镜像
goland如何把go项目打包进docker镜像
420 0
|
Java Go Maven
使用GoLand来开始你的第一个Gin Web项目吧
使用GoLand来开始你的第一个Gin Web项目吧
979 0
使用GoLand来开始你的第一个Gin Web项目吧
|
Java 编译器 Go
Go 语言 入门 && 基于 GoLand 2023.1 创建第一个Go程序
Go 语言 入门 && 基于 GoLand 2023.1 创建第一个Go程序
127 0
|
IDE Go 开发工具
Go开发IDE全览:GoLand vs VSCode全面解析
Go开发IDE全览:GoLand vs VSCode全面解析
507 0
|
IDE Go 开发工具
【Go·编辑器IDE】GoLand集成开发环境安装及使用教程
【Go·编辑器IDE】GoLand集成开发环境安装及使用教程
【Go·编辑器IDE】GoLand集成开发环境安装及使用教程
|
2月前
|
IDE Go 开发工具
8-13|Cannot run program "C:\Users\Administrator\AppData\Local\Temp\GoLand\___8go_build__go.exe" (in
8-13|Cannot run program "C:\Users\Administrator\AppData\Local\Temp\GoLand\___8go_build__go.exe" (in
|
5月前
|
IDE Linux Go
|
编译器 Go 开发工具
JetBrains GoLand 以debug运行Go程序时出现could not launch process: decoding dwarf section info at offset 0x0: too short报错之保姆级别解决方案
JetBrains GoLand 以debug运行Go程序时出现could not launch process: decoding dwarf section info at offset 0x0: too short报错之保姆级别解决方案
264 0
Go-解决低版本Goland调试问题:Version of Delve is too old for this version...
Go-解决低版本Goland调试问题:Version of Delve is too old for this version...
1148 0
Go-解决低版本Goland调试问题:Version of Delve is too old for this version...