如何在 C++ 中等待用户输入
Jinku Hu
2023年10月12日
本文将介绍等待用户输入的 C++ 方法。需要注意的是,下面的教程假设用户输入的内容与程序执行无关。
使用 cin.get()
方法等待用户输入
get()
是 std:cin
成员函数,它的工作原理类似于 >>
输入运算符,从流中提取字符。在这种情况下,当我们对处理用户输入不感兴趣,只需要实现等待功能时,我们可以调用 get
函数而不需要任何参数。不过请注意,当按下 Enter 键时,这个函数就会返回。
#include <iostream>
#include <vector>
using std::cin;
using std::copy;
using std::cout;
using std::endl;
using std::vector;
int main() {
vector<char> arr = {'w', 'x', 'y', 'z'};
int flag;
flag = cin.get();
for (auto const& value : arr) cout << value << "; ";
cout << "\nDone !" << endl;
return EXIT_SUCCESS;
}
输出:
w; x; y; z;
Done !
使用 getchar
函数来等待用户的输入
getchar
函数是 C 标准库函数,用于从输入流(stdin
)中读取一个字符。与前一个函数一样,这个方法期望返回一个新的行字符(即按下 Enter 键)。getchar
在出错时或遇到流的末端时返回 eof
。
#include <iostream>
#include <vector>
using std::cin;
using std::copy;
using std::cout;
using std::endl;
using std::vector;
int main() {
vector<char> arr = {'w', 'x', 'y', 'z'};
int flag;
flag = getchar();
for (auto const& value : arr) cout << value << "; ";
cout << "\nDone !" << endl;
return EXIT_SUCCESS;
}
使用 getc
函数等待用户输入
作为一种替代方法,我们可以用 getc
函数代替上面的例子。getc
传递的是 FILE *stream
参数,用于从任何给定的输入流中读取,但在本例中,我们传递的是 stdin
,这是通常与终端输入相关的标准输入流。当 Enter 键被按下时,这个函数也会返回。
#include <iostream>
#include <vector>
using std::cin;
using std::copy;
using std::cout;
using std::endl;
using std::vector;
int main() {
vector<char> arr = {'w', 'x', 'y', 'z'};
int flag;
flag = getchar();
for (auto const& value : arr) cout << value << "; ";
cout << "\nDone !" << endl;
return EXIT_SUCCESS;
}
避免使用 system("pause")
来等待用户输入
system
函数用于执行 shell 命令,命令名称以字符串文字形式传递。因此,如果传递一个 pause
作为参数,就会尝试运行相应的命令,这只有在 Windows 平台上才有。比起使用 system("pause")
这种不可移植的方式,最好用上面列出的方法实现一个自定义的 wait 函数。
#include <iostream>
#include <vector>
using std::cin;
using std::copy;
using std::cout;
using std::endl;
using std::vector;
int main() {
vector<char> arr = {'w', 'x', 'y', 'z'};
int flag;
system("pause");
for (auto const& value : arr) cout << value << "; ";
cout << "\nDone !" << endl;
return EXIT_SUCCESS;
}
输出:
sh: 1: pause: not found
w; x; y; z;
Done !