Golang的一些功能函数——Slice

1. 翻转slice

func reverse(s []int) {
    for i,j := 0,len(s)-1; i < j; i,j = i+1,j-1 {
        s[i],s[j] = s[j],s[i]
    }
}

2. []byte间比较大小

package main

import (
    "bytes"
)

func main() {
    // Interpret Compare's result by comparing it to zero.
    var a,b []byte
    if bytes.Compare(a,b) < 0 {
        // a less b
    }
    if bytes.Compare(a,b) <= 0 {
        // a less or equal b
    }
    if bytes.Compare(a,b) > 0 {
        // a greater b
    }
    if bytes.Compare(a,b) >= 0 {
        // a greater or equal b
    }

    // Prefer Equal to Compare for equality comparisons.
    if bytes.Equal(a,b) {
        // a equal b
    }
    if !bytes.Equal(a,b) {
        // a not equal b
    }
}

3. []byte <-> string

// string -> []byte

import "encoding/hex"

address := "Guangzhou"
address_byte := []byte(address)

// []byte -> string
address = hex.EncodetoString(address_byte)

相关文章

什么是Go的接口? 接口可以说是一种类型,可以粗略的理解为他...
1、Golang指针 在介绍Golang指针隐式间接引用前,先简单说下...
1、概述 1.1&#160;Protocol buffers定义 Protocol buffe...
判断文件是否存在,需要用到"os"包中的两个函数: os.Stat(...
1、编译环境 OS :Loongnix-Server Linux release 8.3 CPU指...
1、概述 Golang是一种强类型语言,虽然在代码中经常看到i:=1...