【DevOps Roadmap】 前言
发表于|DevOps
文章作者: Leopold Fitz
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 Leopold's Blog!
相关推荐
2023-03-01
【DevOps Roadmap】 第一章《Go基础》
gopher [ˈɡoʊfər] n. 囊地鼠(产自北美的一种地鼠) 命令 go mod init example.com/greetings:初始化项目 ,会生成go.mod,标明你使用的go version go run main.go:运行main.go go build main.go:打包(windows打包为linux可执行文件) 12$Env:GOARCH="amd64";$Env:GOOS="linux"go build main.go 数据类型声明方式 声明一个变量 1var i = 1 声明多个变量 1234var ( i string = "10" j int = 20) 省略类型声明 1234var ( i = "10" j = 20) 省略var(常用) 12i := "10"j := 20 基础数据类型整形 有符号整型(负数、0和正数):如 int(可能是 32bit,也可能是 64bit,和硬件设备...
2023-03-02
【DevOps Roadmap】 第二章《理解不同操作系统的概念》
Please do not throw sausage pizza away. Networking 计算机网络Computer networking refers to interconnected computing devices that can exchange data and share resources with each other. These networked devices use a system of rules, called communications protocols, to transmit information over physical or wireless technologies. 计算机网络是指可以相互连接并交换数据以及共享资源的计算设备。这些网络设备使用一套被称为通信协议的规则系统,在物理或无线技术上传输信息。 Begin by studying the OSI Model. This model will assist in constructing an understanding of the linked...
评论