break continue goto break:跳出一层循环 continue:继续下一次循环 goto: fmt.Println("aaa") goto End // 跳转到End标签 fmt.Println("bbb") End: // End标签 fmt.Println("ccc")