yohhoyの日記

技術的メモをしていきたい日記

2012-07-11から1日間の記事一覧

標準入出力のリダイレクション

C++

標準入出力ストリーム(cin, cout等)の入出力先を一時的に変更するヘルパクラス。 std::ifstream("input.txt"); ioredirector rd0(std::cin, ifs); std::string s; while (std::getline(std::cin, s)) /* input.txtから1行読込 */; // coutへ出力... 標準出力…