Blogger Information
echo
Blog
5
fans
0
comment
0
visits
3083
integral:0
P beans:10
Recent Updates
redis主从 2020-05-16
docker快速入门 2020-05-15
redis入门学习 2020-04-25
Go基本语法 2020-04-15
Go环境安装、配置 2020-04-21
Blog classification
PHP 0 articles
GO 2 articles
Redis 2 articles
Docker 1 articles
  • List of blog posts
  • Go基本语法

    变量、常量Go语言中的变量必须先声明在使用(跟php,python不一样) 声明变量var 变量名 变量类型 package mainimport "fmt"// 声明变量 推荐使用驼峰命名// var name string// var age i...

    2020-04-15 01:45 Read 488 comment 0
  • Go环境安装、配置

    GO安装GOPATH设置 1.在系统环境变量配置GOPATH(E:\code\go)2.新建三个文件src,pkg,bin3.将E:\code\go\bin放入系统环境变量4.go env查看go相关环境变量 GO项目结构 1.自己写的代码放在src...

    2020-04-21 08:23 Read 543 comment 0