Xcode 中的清屏

发布于 2025-01-07 04:20:13 字数 112 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鸩远一方 2025-01-14 04:20:13

看看这个。

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 等)的系统,您还可以做一件事[注意:我自己还没有测试过]:

#include < unistd.h >
#include < term.h >
void ClearScreen()
{
  if (!cur_term)
  {
     int result;
     setupterm( NULL, STDOUT_FILENO, &result );
     if (result <= 0) return;
  }
  putp( tigetstr( "clear" ) );
}

您必须链接到正确的库(-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 use system("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]:

#include < unistd.h >
#include < term.h >
void ClearScreen()
{
  if (!cur_term)
  {
     int result;
     setupterm( NULL, STDOUT_FILENO, &result );
     if (result <= 0) return;
  }
  putp( tigetstr( "clear" ) );
}

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/)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文