syntax error: non-declaration statement outside function body
Posted endurance9
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了syntax error: non-declaration statement outside function body相关的知识,希望对你有一定的参考价值。
在函数外部使用形如:name:="mark"
这样语句会出现 syntax error: non-declaration statement outside function body
package main
import "fmt"
var age uint8 // ok
var age1 uint8 = 18 // ok
var age2 = 18 // ok
age3 := 18 // error
// 出错的原因在于 age3 := 18实际上是两条语句 var age3 int + age3 = 18
// 然而age3 = 18这样的语句是不能再函数体之外执行的
// 就行下面两行代码
ag1 = 29 // error
age2 = 21 // error
func main() {
fmt.Println("...")
}
以上是关于syntax error: non-declaration statement outside function body的主要内容,如果未能解决你的问题,请参考以下文章
执行shell脚本报错:syntax error near unexpected token `或syntax error: unexpected end of file
Parse error: syntax error, unexpected end of file
laravel --报错:Parse error: syntax error, unexpected '}', expecting ';'
Syntax Error: Unexpected token, expected {