[转]c/c++:cin.tie与sync_with_stdio加速输入输出

  1. tie
  2. sync_with_stdio

File : None
Type : c++
Brief : 加速c++基本IO输入输出

文章原链接:cin.tie与sync_with_stdio加速输入输出

tie

// tie是将两个stream绑定的函数,空参数的话返回当前的输出流指针。
#include <iostream>
#include <fstream>

int main(int argc, char *argv[])
{
  std::ostream *prevstr;
  std::ofstream ofs;
  ofs.open("test.txt");

  // 直接输出到控制台stdout
  std::cout << "tie example:\n";

  // 空参数调用返回默认的output stream,也就是cout,输出到控制台stdout
  *std::cin.tie() << "This is inserted into cout\n";

  // cin绑定ofs,返回原来的output stream
  prevstr = std::cin.tie(&ofs);

  // ofs,输出到文件test.txt
  *std::cin.tie() << "This is inserted into the file\n";

  // 恢复
  std::cin.tie(prevstr);

  ofs.close();
  system("pause");
  return 0;
}

sync_with_stdio

  • sync_with_stdio这个函数是一个“是否兼容stdio”的开关,C++为了兼容C,保证程序在使用了std::printf和std::cout的时候不发生混乱,将输出流绑到了一起。
  • 我们可以在IO之前将sync_with_stdio解除绑定,这样做了之后要注意不要同时混用cout和printf之类。
  • 默认的情况下cin绑定的是cout,每次执行 << 操作符的时候都要调用flush,这样会增加IO负担。可以通过tie(0)(0表示NULL)来解除cincout的绑定,进一步加快执行效率。
#include <iostream>
int main()
{
    std::ios::sync_with_stdio(false);
    std::cin.tie(0);
    // IO
}

转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 [ yehuohan@gmail.com ]

文章标题:[转]c/c++:cin.tie与sync_with_stdio加速输入输出

本文作者:Y

发布时间:2018-03-19, 00:00:00

最后更新:2019-05-21, 20:06:10

原始链接:http://yehuohan.github.io/2018/03/19/Gist/c&c++/cin-tie%E4%B8%8Esync-with-stdio%E5%8A%A0%E9%80%9F%E8%BE%93%E5%85%A5%E8%BE%93%E5%87%BA/

版权声明: "署名-非商用-相同方式共享 4.0" 转载请保留原文链接及作者。