golang从stdin中读取一行

前端之家收集整理的这篇文章主要介绍了golang从stdin中读取一行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文转自lifeleanote博客:http://leanote.com/blog/view/531706971a91084358000000

fmt.Scanln()不是读取一行,而是遇到换行就停止,

Scanln is similar to Scan,but stops scanning at a newline and after the final item there must be a newline or EOF.

举个例子:

vari,j,kint
fmt.Scanln(&i,&j,&k)
fmt.Println(i,k)

输入1,2 回车后程序结束. 如果换成fmt.Scan()还会让输入的.

使用stdin与reader联合起来读一行数据:

reader:=bufio.NewReader(os.Stdin)
strBytes,hasMore,err:=reader.ReadLine()

但bufio与fmt.Scan()一起用时会有错误,可能是bufio的问题,bufio多读,导致fmt.Scan()不能读

还是自己写个方法读一行:

//得到一行
funcScanLine()string{
	varcbyte
	varerrerror
	varb[]byte
	for;err==nil;{
		_,err=fmt.Scanf("%c",&c)
		
		ifc!='\n'{
			b=append(b,c)
		}else{
			break;
		}
	}
	
	returnstring(b)
}
原文链接:https://www.f2er.com/go/190978.html

猜你在找的Go相关文章