Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果不使用 Cocoa,我如何检测当前是否在 Objective-C++ 中按下了某个键?在 Windows 中,您使用“GetAsyncKeyState”。
你试图做的事情是不可能的。命令行程序与输入和输出文件(stdin, stdout, stderr)进行交互,这些文件不会传输诸如“按下按键”或“松开按键”之类的事件,而只会传输字符流(实际上是字节)。
stdin
stdout
stderr