GO语言菜鸟-问题

xaingyangflower · · 1721 次点击
遇到问题先查文档是一个好习惯。仔细看看 go doc 对 fmt.Sscan 是怎么描述的: > func Sscan(str string, a ...interface{}) (n int, err error)<br> > Sscan scans the argument string, storing successive space-separated values into successive arguments. Newlines count as space. It returns the number of items successfully scanned. If that is less than the number of arguments, err will report why. 在编译器看来,下面的语句表示:将 line 中(用空白分割的)第一个 token 赋给 "%f %f",(后面省略)。 ``` if _,err:= fmt.Sscan(line, "%f %f ",&radius,&θ); err != nil { ``` "%f %f"是一个字符串常量,而不是变量的指针,运行时无法给它赋值。因此报下面的错: ``` type not a pointer: string ``` 意思是我想要一个指针,你却给我了一个字符串。我只能给你一个 panic 。
#4
更多评论
能发个完整点的demo吗?发play.golang.org
#1
polaris
社区,需要你我一同完善!
新手也需要好好提问: 1. 代码不完整; 2. 格式乱,markdown 基本语法得懂点,即使不懂,发布那里有教程,还提示了发布前预览下; 3. 节点也不好好选;
#2