在C++中,使用控制臺進行輸入輸出時可能會遇到一些錯誤
std::cin.fail()
函數(shù)檢查輸入流是否有錯誤,并使用std::cin.clear()
和std::cin.ignore()
清除錯誤標志和緩沖區(qū)。#include<iostream>
#include<limits>
int main() {
int num;
std::cout << "請輸入一個整數(shù): ";
std::cin >> num;
if (std::cin.fail()) {
std::cerr << "輸入錯誤!請輸入一個整數(shù)。"<< std::endl;
std::cin.clear(); // 清除錯誤標志
std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n'); // 清除緩沖區(qū)
} else {
std::cout << "你輸入的整數(shù)是: "<< num<< std::endl;
}
return 0;
}
is_open()
函數(shù)檢查文件是否成功打開,使用fail()
函數(shù)檢查是否有其他錯誤。#include<iostream>
#include <fstream>
#include<string>
int main() {
std::ifstream file("example.txt");
if (!file.is_open()) {
std::cerr << "無法打開文件!"<< std::endl;
return 1;
}
std::string line;
while (std::getline(file, line)) {
std::cout<< line<< std::endl;
}
if (file.fail()) {
std::cerr << "讀取文件時發(fā)生錯誤!"<< std::endl;
file.close();
return 1;
}
file.close();
return 0;
}
std::string
)。#include<iostream>
#include<string>
int main() {
const int maxLength = 10;
char buffer[maxLength];
std::cout << "請輸入最多"<< maxLength - 1 << "個字符: ";
std::cin.getline(buffer, maxLength);
if (std::cin.fail()) {
std::cerr << "輸入超過最大長度!"<< std::endl;
std::cin.clear(); // 清除錯誤標志
std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n'); // 清除緩沖區(qū)
} else {
std::cout << "你輸入的內容是: "<< buffer<< std::endl;
}
return 0;
}
總之,為了確保C++控制臺輸入輸出的正確性和健壯性,需要對可能發(fā)生的錯誤進行處理,并在必要時提供適當?shù)腻e誤信息。