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.
我对 Linux 终端输出有一些疑问
在交流程序中,我做了一个
printf("Write A Message"); fgets(buffer,BUFSIZ,stdin);
等待从键盘输入消息我在后台有线程返回一个输出,是否可以在输入期间在终端中输出他们的消息?不会弄乱插入的单词。
原因在服务器上,并且有人可以在服务器中编写命令
如果您的线程也打印到终端,则输出将显示在屏幕上并弄乱那里的内容。因此,如果您等待按键并且同时线程正在打印,则该消息可能会消失。