0

これまでにピリオド (".") だけを含むベクトルのベクトルがあり、グリッド上の特定の座標を、入力ファイルから取り込んでいるシンボルに置き換えたいと考えています。置換メソッドを使用していますが、このエラーが発生し続けます

「エラー: replace の呼び出しに一致する関数がありません (std::basic_string, std::allocator >&, std::basic_string, std::allocator >&, const char [2], const char*)」

そのエラーの意味がわかりません。すべての助けに感謝します。前もって感謝します

ここに私のコードがあります

 #include <vector>
 #include <string>
 #include <fstream>
 #include <iostream>
 #include <algorithm>



using namespace std; 

int main()
{
string locationfilename, filenames,symbol;
int numRows, numCols, startRow, startCol, endRow, endCol, possRow, possCol, id;

cout<< "Enter Locations Filename"<<endl;
cin>>locationfilename;
cout<< "Enter Names Filename"<<endl;
cin>>filenames;

ifstream locations(locationfilename.c_str());
ifstream names(filenames.c_str());

locations>>numRows>>numCols>>startRow>>startCol>>endRow>>endCol;

vector <string> rows(numCols,".");
vector< vector<string> > grid(numRows,rows);


locations>>possRow>>possCol>>symbol>>id;
while(!locations.fail())
{


    if(possRow>numRows || possCol>numCols)
    {
        cout<<id<< " out of bounds-ignoring"<<endl;
    } 
    else
    {
    replace(grid.at(possRow).front(),grid.at(possRow).back(),".",symbol.c_str());
    }

locations>>possRow>>possCol>>symbol>>id;
}

}
4

1 に答える 1

1

Chris が指摘したように、渡したパラメーターstd::replaceは正しいものではありません。std::replaceは最初の 2 つのパラメーターを期待iteratorsしていますが、渡していますreferences

とを使用begin()end()てイテレータを取得できます。
std::replace(grid.at(possRow).begin(), grid.at(possRow).end(), ".", symbol.c_str());

于 2013-11-03T00:09:20.520 に答える