私は以下のようなコードを持っています。temps = $Nodes
ループが終了するたびに。temps
私はすべての反復をチェックtemps = $Nodes
し、期待どおりに一度それを見ましたが、ループは終了しませんでした. このコードは VS10 では機能しましたが、Linux では機能しませんでした。何か案が?
std::string temps;
s_mesh_file.open (mesh_file.c_str());
do
{
getline (s_mesh_file, temps);
std::cout << "temps: " << temps << std::endl;
std::cin.ignore();
}
while (temps != "$Nodes");