C++ Perl 中的 getch() ?
在c++中,有一个函数,getch(), 它返回 您按下的键的变量 - 就像 Enter 一样 13. 我怎样才能在 Perl 中做到这一点?
In c++, there is a functio, getch(),
which returns the
variable of the key you pressed - like enter would be
13. How could I do this in perl?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Term::ReadKey。
You can use Term::ReadKey.
简而言之:
详细:
来自
perldoc -f getc
:in short:
detailed:
from
perldoc -f getc
: