在Golang中实现与getchar相似功能的函数的方法
C语言中getchar()函数的示例
#include <stdio.h>
void main()
{
char ch;
ch = getchar();
printf("Input Char Is :%c(%d)",ch, ch);
}
如果使用go语言来实现
package main
import (
"bufio"
"fmt"
"os"
)
func main() {
reader := bufio.NewReader(os.Stdin)
input, _ := reader.ReadString('\n')
fmt.Printf("Input Char Is : %v\n", string([]byte(input)[0]))
// fmt.Printf("You entered: %v\n", []byte(input))
// fmt.Println(input)
}
在Golang中,当按下Enter键时,会显示最后的换行符\n(U+0010),而在C语言的getchar()函数中无法检测到这种情况。
如果要在C语言中检测这个情况,请使用getch()进行检测。
参考资料
-
- https://groups.google.com/forum/?fromgroups=#!topic/golang-nuts/zhBE5MH4n-Q
-
- https://groups.google.com/forum/?fromgroups=#!topic/golang-nuts/S9AO_kHktiY
-
- https://groups.google.com/forum/?fromgroups=#!topic/golang-nuts/icMfYF8wJCk
- http://stackoverflow.com/questions/14094190/golang-function-similar-to-getchar