std::ios::sync_with_stdio(false);

Posted hrlsm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了std::ios::sync_with_stdio(false);相关的知识,希望对你有一定的参考价值。

std::ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);

c++中cin,cout效率比较低,是因为先把要输出的东西存入缓冲区,再输出,导致效率降低,而这段语句可以来打消iostream的输入和输出缓存,可节省时间,使效率与scanf与printf相差无几

默认的情况下cin绑定的是cout,每次执行 << 操作符的时候都要调用flush,这样会增加IO负担。可以通过tie(0)(0表示NULL)来解除cin与cout的绑定,进一步加快执行效率。

如下所示:

#include <iostream>
int main() 
{
    std::ios::sync_with_stdio(false);
    std::cin.tie(0);
    // IO
}

 

以上是关于std::ios::sync_with_stdio(false);的主要内容,如果未能解决你的问题,请参考以下文章

std::ios::sync_with_stdio(false);

std:ios:sync_with_stdio (false)以及局限性

使用std::ios::tie与std::ios_base::sync_with_stdio加速流

std::ios::sync_with_stdio和tie()——给cin加速

std::ios::sync_with_stdio(false);

关于std::ios::sync_with_stdio(false)