标签: c++ macos objective-c++ core-foundation
如果不使用Cocoa,我怎样才能检测到目前c ++中是否按下某个键?在Windows中,您使用“GetAsyncKeyState”。
答案 0 :(得分:1)
你想要做的是不可能的。命令行程序与输入和输出文件(stdin,stdout,stderr)进行交互,这些文件不会传输诸如“按下键”或“键释放”等事件,而只会传输字符(实际上是字节)。
stdin
stdout
stderr