私は次の方法を使用してtxtファイルを読み取ります
modelStream.open("file.txt", ios::in);
if (modelStream.fail())
exit(1);
model = new Model(modelStream);
しかし、パラメータとして文字列を渡す方法を知りたい
string STRING;
modelStream.open(STRING, ios::in);
if (modelStream.fail())
exit(1);
model = new Model(modelStream);
これが可能かどうか、そしてそれが可能であるかどうかを誰かが知っていますか?