Golang(Go语言)代码技巧之数组(array)和切片(slice)

  • 去掉最后n个元素
 
   
line = line[:len(line)-n]
  • 两种遍历方式
 
     
for i:=0;i<len(line);i++{
// ...=line[i]
}
for index,value:=range line {
//...
}
  • 二维数组中查询某个值是否存在
 
    
found := false
LABEL:
for row := range arr {
for colum := range arr[row]{
if arr[row][colum]==V {
found = true
break LABEL
}
}
}


你可能感兴趣的:(Golang)