• Go语言常用库


    Go语言常用库

    文本主要介绍Go常用的一些系统库:

    sort、math、copy、strconv、crypto

    1、sort

    package main
    
    import (
       "fmt"
       "sort"
    )
    
    // sort
    // int排序
    // sort.Ints([]int{})
    // 字符串排序
    // sort.Strings([]string{})
    // 自定义排序
    // sort.Slice(s,func(i,j int)bool{return s[i]
    func main() {
       slice1 := make([]int, 0)
       slice1 = append(slice1, 2)
       slice1 = append(slice1, 1)
       // int排序
       sort.Ints(slice1)
       // [1 2]
       fmt.Println(slice1)
       slice2 := make([]string, 0)
       slice2 = append(slice2, "2")
       slice2 = append(slice2, "1")
       // 字符串排序
       sort.Strings(slice2)
       // [1 2]
       fmt.Println(slice2)
       slice3 := make([]int, 0)
       slice3 = append(slice3, 22)
       slice3 = append(slice3, 11)
       // 自定义排序
       sort.Slice(slice3, func(i, j int) bool { return slice3[i] < slice3[j] })
       // [11 22]
       fmt.Println(slice3)
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37

    2、math

    package main
    
    import (
    	"fmt"
    	"math"
    )
    
    func main() {
    	// int32 最大最小值
    	// 实际值:1<<31-1
    	// 2147483647
    	fmt.Println(math.MaxInt32)
    	// 实际值:-1<<31
    	// -2147483648
    	fmt.Println(math.MinInt32)
    	// int64 最大最小值(int默认是int64)
    	// 9223372036854775807
    	fmt.Println(math.MaxInt64)
    	// -9223372036854775808
    	fmt.Println(math.MinInt64)
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21

    3、copy

    package main
    
    import "fmt"
    
    func main() {
    	a := make([]int, 0)
    	a = []int{0, 1, 2, 3, 4, 5, 6}
    	i := 2
    	// 删除a[i],可以用copy将i+1到末尾的值覆盖到i,然后末尾-1
    	// func copy(dst, src []Type) int
    	copy(a[i:], a[i+1:])
    	a = a[:len(a)-1]
    	// [0 1 3 4 5 6]
    	fmt.Println(a)
    	// make创建长度,则通过索引赋值
    	n := 10
    	b := make([]int, n)
    	b[n-1] = 100
    	// [0 0 0 0 0 0 0 0 0 100]
    	fmt.Println(b)
    	// make长度为0,则通过append()赋值
    	c := make([]int, 0)
    	c = append(a, 200)
    	// [0 1 3 4 5 6 200]
    	fmt.Println(c)
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26

    4、strconv

    package main
    
    import (
    	"fmt"
    	"strconv"
    )
    
    func main()  {
    	// byte转数字
    	s := "12345"
    	// s[0]类型是byte
    	// 1
    	num := int(s[0] - '0')
    	// "1"
    	str := string(s[0])
    	// '1'
    	b := byte(num + '0')
    	// 111
    	fmt.Printf("%d%s%c\n", num, str, b)
    	// 字符串转数字
    	num1, _ := strconv.Atoi("123")
    	// 123
    	fmt.Println(num1)
    	// 数字转字符串
    	str1 := strconv.Itoa(123)
    	// 123
    	fmt.Println(str1)
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28

    5、crypto

    Go 中使用 AES 对称加密来加密和解密数据。

    package main
    
    import (
    	"crypto/aes"
    	"crypto/cipher"
    	"crypto/rand"
    	"encoding/base64"
    	"fmt"
    	"io"
    )
    
    // 加密密钥,必须是 16、24 或 32 字节
    var encryptionKey = []byte("12345678abcdefgh")
    
    func encrypt(data []byte) (string, error) {
    	block, err := aes.NewCipher(encryptionKey)
    	if err != nil {
    		return "", err
    	}
    
    	ciphertext := make([]byte, aes.BlockSize+len(data))
    	iv := ciphertext[:aes.BlockSize]
    	if _, err := io.ReadFull(rand.Reader, iv); err != nil {
    		return "", err
    	}
    
    	stream := cipher.NewCFBEncrypter(block, iv)
    	stream.XORKeyStream(ciphertext[aes.BlockSize:], data)
    
    	return base64.URLEncoding.EncodeToString(ciphertext), nil
    }
    
    func decrypt(encodedData string) ([]byte, error) {
    	ciphertext, err := base64.URLEncoding.DecodeString(encodedData)
    	if err != nil {
    		return nil, err
    	}
    
    	block, err := aes.NewCipher(encryptionKey)
    	if err != nil {
    		return nil, err
    	}
    
    	if len(ciphertext) < aes.BlockSize {
    		return nil, fmt.Errorf("加密数据长度无效")
    	}
    
    	iv := ciphertext[:aes.BlockSize]
    	ciphertext = ciphertext[aes.BlockSize:]
    
    	stream := cipher.NewCFBDecrypter(block, iv)
    	stream.XORKeyStream(ciphertext, ciphertext)
    
    	return ciphertext, nil
    }
    
    func main() {
    	data := []byte("Hello")
    	encryptedData, err := encrypt(data)
    	if err != nil {
    		fmt.Println("加密失败:", err)
    		return
    	}
    
    	fmt.Println("加密后的数据:", encryptedData)
    
    	decryptedData, err := decrypt(encryptedData)
    	if err != nil {
    		fmt.Println("解密失败:", err)
    		return
    	}
    
    	fmt.Println("解密后的数据:", string(decryptedData))
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    加密后的数据: GaWSwBoaMaSyNdkNEnLsmapFhJIZ
    解密后的数据: Hello
    
    • 1
    • 2
  • 相关阅读:
    Scala集合习题
    【c语言基础题】— —第六版,可当作日常练习和期末复习,有奇效哟!
    一种非线性权重的自适应鲸鱼优化算法IMWOA附matlab代码
    MES管理系统如何处理电子行业生产问题
    LibreOffice怎么打开导航页面
    WuThreat身份安全云-TVD每日漏洞情报-2022-12-07
    bash shell 初体验-尚文网络xUP楠哥
    电机应用开发-PID控制器参数整定
    Numpy 计算平均值,中位数,方差,标准偏差
    设计模式 原型模式来复制女朋友
  • 原文地址:https://blog.csdn.net/qq_30614345/article/details/134063862