在C++中,gets函數已經被廢棄,不再推薦使用。相反,我們應該使用更安全的替代函數getline來讀取字符串。
要使用getline函數,你需要包含#include
使用getline函數的示例代碼如下:
#include <iostream>
#include <string>
int main() {
std::string str;
std::cout << "Enter a string: ";
std::getline(std::cin, str);
std::cout << "You entered: " << str << std::endl;
return 0;
}
在上面的示例中,我們包含了
請注意,輸入的字符串可以包含空格和其他特殊字符,而不僅僅是單個單詞。這使得getline函數更加靈活和安全,因為它能夠正確處理輸入行的長度和內存分配。