阅读量:1
在C++中,get函数主要用于从输入流中获取单个字符。它可以用于从标准输入(键盘)、文件或字符串中获取字符。
get函数有两种常见的用法:
从输入流(例如键盘)获取字符:
char ch; ch = getchar(); // 从标准输入获取一个字符
从文件获取字符:
#include <fstream> #include <iostream> int main() { std::ifstream file("example.txt"); // 打开文件 char ch; if (file) { file.get(ch); // 从文件获取一个字符 std::cout << ch << std::endl; file.close(); // 关闭文件 } else { std::cout << "无法打开文件" << std::endl; } return 0; }
请注意,get函数每次只能获取一个字符。另外,get函数还可以与其他输入函数(如cin、getline等)结合使用,以获取更多的字符。