31 December 2023

C++ 核心指南目录

“Unless you use printf-family functions call ios_base::sync_with_stdio(false)

理由

iostreamprinf 风格的 I/O 操作同步成本很高。 cincout 默认和 prinft 同步。

例子

int main()
{
    ios_base::sync_with_stdio(false);
    // ... use iostreams ...
}