2026-02-01から1ヶ月間の記事一覧
C++標準ライブラリのI/Oストリームにおける知名度の低いマニピュレータ(manipulator)。*1出力ストリームに対して出力操作毎のフラッシュ(flush)を指示する。*2 #include <iostream> int x = 42; std::cout << std::unitbuf; std::cout << "x=" << x << "\n"; // operat</iostream>…
プログラミング言語C標準規格に登場する「廃止予定の機能(obsolescent feature)」の意味を正確に規定する提案が提出されている。 Motivation Mixing the terms "obsolete", "obsolescent", "deprecated", and "removed", despite distinctions in their mean…