Console.ReadKey
在 Windows 上的 Eiffel 中是否有类似 .NET 的东西?
我需要一种无需等待用户按 Enter 即可从控制台读取输入的方法。
该功能io.read_character
无法使用,因为它会阻塞,直到用户按下 Enter。
Console.ReadKey
在 Windows 上的 Eiffel 中是否有类似 .NET 的东西?
我需要一种无需等待用户按 Enter 即可从控制台读取输入的方法。
该功能io.read_character
无法使用,因为它会阻塞,直到用户按下 Enter。
正如 SO(此处或此处)以及其他地方的答案中所解释的那样,没有无需等待即可从控制台读取字符的便携式方法。但是,您可以通过连接 Eiffel 的外部代码轻松使用链接中列出的任何方法。以下示例演示了如何在 Windows 上执行此操作:
read_char: CHARACTER
-- Read a character from a console without waiting for Enter.
external "C inline use <conio.h>"
alias "return getch ();"
end
然后read_char
可以从您的代码中调用该功能作为常规功能:
from
io.put_string ("Press q or Esc to exit.")
io.put_new_line
until
c = 'q' or c = '%/27/'
loop
c := read_char
io.put_string ("You pressed: ")
if c = '%U' or c = '%/224/' then
-- Extended key is pressed, read next character.
c := read_char
io.put_string ("extended key ")
io.put_natural_32 (c.natural_32_code)
else
io.put_character (c)
end
io.put_new_line
end