Xcode 中的清屏
我正在使用 C++ 在 Xcode 中制作图书馆管理系统。由于 Xcode 不支持 conio.h 等库,并且系统“cls”在其中不起作用。当我希望屏幕从一个菜单切换到另一个菜单时,应该使用什么代码来清除屏幕?
I am making a Library Management System in Xcode using C++. As Xcode does not support libraries such as conio.h and system "cls" does not work in it. What code should I use to clear the screen when I want it to shift from one menu to the other?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这个。
https://discussions.apple.com/thread/1064635?start=0& ;tstart=0
没有直接的方法可以做到这一点;
system()
命令在 Mac (Unix) 上不起作用。一种选择是使用代码添加大量空格,即\n或其他方式是使用curses库<代码>#include < curses.h > (curses.h) 然后使用
system("clear")
,这基本上会做同样的事情。因此,最好使用代码手动打印空格,而不是使用某些库。对于基于 POSIX(Unix、Linux、Mac OSX 等)的系统,您还可以做一件事[注意:我自己还没有测试过]:
您必须链接到正确的库(
-lcurses<之一) /code>、
-lterminfo
等)来编译最后一个。 (来源:http://www.cplusplus.com/forum/articles/10515/)Check this out.
https://discussions.apple.com/thread/1064635?start=0&tstart=0
There is no direct way to do that; the
system()
command will not work on Mac (Unix). One option is to add a lot of spaces using code i.e.\n or other way is to use curses library#include < curses.h >
(curses.h) and then usesystem("clear")
, which basically will do the same thing. So, its better to print spaces manually using the code rather than using some library.One more thing you can do for POSIX (Unix, Linux, Mac OSX, etc) based systems [Note: I have not tested it myself]:
You'll have to link to the proper library (one of
-lcurses
,-lterminfo
, etc.) to compile that last one. (Source: http://www.cplusplus.com/forum/articles/10515/)