码迷,mamicode.com
首页 > 其他好文 > 详细

golang build error: syntax error: nested func not allowed

时间:2015-07-17 20:38:12      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

 

在笔记本中写了一个简易web程序,但是编译失败,提示“syntax error: nested func not allowed” 。

不明白什么意思,幸好代码量小,原来是方法的末尾的“}”丢了

package main

import "fmt"
import "net/http"

func main() {

    http.HandleFunc("/", hello)
    err := http.ListenAndServe(":8080", nil)

    if err != nil {
        fmt.Println(err)
    }

}

func hello(rw http.ResponseWriter, r *http.Request) {

    fmt.Fprintf(rw, "Hello lao yu !\n")
}

 

添加缺失的“}”后,编译通过!

到底提示的错误信息是什么呢? 原来是告知“不允许函数嵌套” 。

好了,仅此记录出现过的错误。

golang build error: syntax error: nested func not allowed

标签:

原文地址:http://www.cnblogs.com/howDo/p/golang-nested-func-not-allowed.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!