-5
嗨,我想通過給它兩個參數來使用getline()函數。但由於沒有重載函數的實例與參數列表匹配,所以它給出了錯誤。getline()錯誤。沒有重載函數的實例匹配參數列表。
這裏是我的代碼片段:
string equation;
cout<<"Enter the string";
getline(cin, equation);
誰能告訴我,如果我失去了一些東西。
謝謝。
嗨,我想通過給它兩個參數來使用getline()函數。但由於沒有重載函數的實例與參數列表匹配,所以它給出了錯誤。getline()錯誤。沒有重載函數的實例匹配參數列表。
這裏是我的代碼片段:
string equation;
cout<<"Enter the string";
getline(cin, equation);
誰能告訴我,如果我失去了一些東西。
謝謝。
可能有另一個函數叫做getline
,它有不同的參數。要使用the one you want,你必須
#include <iostream>
#include <string>
,要麼使用
using namespace std;
或明確提出std::
前string
,cout
,cin
和getline
。
...或者使用std :: string;使用std :: cout;使用std :: cin和使用std :: getline; –