std::ios::sync_with_stdio(false);

Posted aprincess

tags:

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

cin慢是有原因的,其实默认的时候,cin与stdin总是保持同步的,

也就是说这两种方法可以混用,而不必担心文件指针混乱,

同时cout和stdout也一样,两者混用不会输出顺序错乱。

正因为这个兼容性的特性,导致cin有许多额外的开销,如何禁用这个特性呢?

只需一个语句std::ios::sync_with_stdio(false);,这样就可以取消cin于stdin的同步了。

程序如下:

const int MAXN = 10000000;  

int numbers[MAXN];  

void cin_read_nosync()    
    freopen("data.txt","r",stdin);  
    std::ios::sync_with_stdio(false);  
    for (int i=0;i<MAXN;i++)  
        std::cin >> numbers[i];  

 

以上是关于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)