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.
我需要使用 C++ 构建一个聊天室,它将在命令提示符下运行。如何将屏幕分成两部分,以便在用户输入消息时接收其他用户的消息?
一些指针:您可以使用ncurses:
ncurses
getmaxx(stdscr)
getmaxy(stdscr)
newwin(lines/2, cols, 0, 0);
lines/2
如需完整文档,请访问此处。
请注意,ncurses 是一个 C 库。