zoukankan      html  css  js  c++  java
  • [手游项目3]-4-goland

    goland
    
    打开工程 file/open 打开工程的文件夹就好,不像vs要打开工程文件
    设置 file/setting/ 设置字体,设置背景色,快捷键等
    编译 silf+f10
    下载mod 
    命令窗口输入 go mod tidy
    
    如果下载失败,拿别人的覆盖自己的C:UsersAdministratorgopkgmod
    
    go module 安装不了golang.org时的处理方式记录
    https://yq.aliyun.com/articles/663151
    go mod edit -require=golang.org/x/net@v1.11.1
    go mod edit -replace=golang.org/x/crypto@v1.11.1=github.com/golang/crypto@latest
    go mod edit -replace=golang.org/x/sys@v1.11.1=github.com/golang/sys@v1.2.3
    
    如果发现import有很多的红色,
    检查设置
    go/gomodule/proxy
    https://goproxy.io
    
    vcs自带了git,可以comit,pull,push
    
    go调试
    Goland 调试 Go  https://www.cnblogs.com/cinlap/p/10064549.html
    
  • 相关阅读:
    js中级-函数封装
    js中级-11.7
    js中级-11.5
    js中级-11.2
    js中级-this
    js中级-作用域链
    10.23
    10.22
    10.19js
    10.18
  • 原文地址:https://www.cnblogs.com/byfei/p/14104189.html
Copyright © 2011-2022 走看看