我在网上阅读了几篇关于在windows中使用c++ 清除控制台的文章system("cls");
一些人告诉我使用系统命令不实用,而且可能不安全。
我想知道为什么,因为我正在为 uni 构建一个小控制台程序,该程序在开始时有一个菜单。
system("cls");
在家里和工作场所使用它是否完全安全和专业?
我在网上阅读了几篇关于在windows中使用c++ 清除控制台的文章system("cls");
一些人告诉我使用系统命令不实用,而且可能不安全。
我想知道为什么,因为我正在为 uni 构建一个小控制台程序,该程序在开始时有一个菜单。
system("cls");
在家里和工作场所使用它是否完全安全和专业?
Please note: The command "cls" is windows specific. The counterpart on Linux systems is command "clear". Hence system("cls") is not portable.
Prefer curses library as it is cross-platform. Want to quick (hacky?) way, look at clear the screen!
Also, have a look at How do you clear console screen in C?