一、基礎

zhangsen發表於2021-04-20

1-轉義字元

\t : 表示一個製表符 
\n :換行符
\\ :一個
\" :一個"
\r :一個回車

例項
fmt.Println("test\t table ")
fmt.Println("hello\nworld ")
fmt.Println("hello\\world ")
fmt.Println("hello\"world ")
fmt.Println("hello\rworld ")

test         table  
hello 
world  
hello\world  
hello"world  
world 

2-程式碼風格

  1. 格式化程式碼
X:\src\learn\chapter02\escaptechar>gofmt -w main.go 
  1. 方法中的大括號問題
func main() {
}
  1. 一行最多不要超過80個字元

3-GO相關文件

包的地址:go-zh.org/pkg/

學習地址:tour.studygolang.com/basics/1

線上標準文件:studygolang.com/pkgdoc

4-Doc的常用命令

  1. 檢視當前目錄 dir
  2. 切到其他碟符 d:
  3. 切換到當前盤的其他目錄
    1. 相對路徑:cd go
    2. 絕對路徑: D:>cd go
  4. 切換到上一級: cd..
  5. 切換到根目錄:cd
  6. 新建目錄:
    1. md ok200 新建一個目錄
    2. 新建多個目錄 md 201 202
  7. 刪除目錄
    1. 刪除空目錄 rd ok 200
    2. 刪除目錄及以下的子目錄和檔案 不帶查詢 rd /q/s 201
    3. 刪除目錄及以下的子目錄和檔案 帶查詢 rd /s ok 202
  8. 檔案的操作
    1. 新建或追加內容到檔案 d:\test100>echo hello >d:\test100\abc\abc.txt
    2. 移動檔案 d:\test100\abc>move abc.txt e:
    3. 刪除檔案 d:\test100\abc>del abc.txt
    4. 刪除所有檔案 d:\test100\abc>del *.txt
  9. 其他命令
    1. 清屏 cls
    2. 退出dos exit
本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章