c_cpp 使用指向别名std :: cin和std :: cout的指针

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 使用指向别名std :: cin和std :: cout的指针相关的知识,希望对你有一定的参考价值。

#include <iostream>

int main() {
  // Create a std::istream pointer and assign it where cin is bound
  std::istream *in;
  in = &std::cin;

  // Create a std::ostream pointer and assign it where cout is bound
  std::ostream *out;
  out = &std::cout;

  std::string word;
  // Dereference the pointer to access the original variable
  *in >> word;
  *out << word;

  return 0;
}

以上是关于c_cpp 使用指向别名std :: cin和std :: cout的指针的主要内容,如果未能解决你的问题,请参考以下文章

std::thread 和 std::cin.get

从 cin 读取的进程上的 HUP 信号

为啥我们需要绑定 std::cin 和 std::cout?

多个虚拟主机 httpd 的多个别名

c_cpp 提高cin和cout IO速度

使用时如何重置std::cin?