CLion is automatically printing back input from standard input, is there any fix for this?(Clion正在自动从标准输入打印回输入,有什么修复方法吗?)
问题描述
我正在尝试使用Clion编写一些基本的C++程序,但每次我使用std::cin
或std::getline
输入一些输入时,输入都会无缘无故地打印回控制台。
例如,如果我运行此程序
#include <iostream>
#include <string>
int main(){
string name;
std::cin >> name;
std::cout << name << std::endl;
return 0;
}
然后键入Thomas,然后按Enter键我得到此输出
thomas
thomas
thomas
什么时候我应该只得到
thomas
thomas
我在Windows 10 x64上使用的是Clion/Mingw64
推荐答案
您的代码没有问题。
您观察到的是在幕后使用WinPTY的副作用。默认情况下,Clion使用它与Windows上的调试程序通信。
这是我们的问题跟踪器中的相应错误:CPP-2580 User input appears twice in output window in CLion under MinGW,请随时对票证进行投票。
虽然尚未针对该问题进行适当的修复,但您可以使用该票证的备注中建议的解决方法来禁用PTY:
通过查找操作打开注册表,键入
run.processes.with.pty
并禁用此PTY设置。
这篇关于Clion正在自动从标准输入打印回输入,有什么修复方法吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Clion正在自动从标准输入打印回输入,有什么修复方法吗?
- DoEvents 等效于 C++? 2021-01-01
- GDB 不显示函数名 2022-01-01
- XML Schema 到 C++ 类 2022-01-01
- 如何提取 __VA_ARGS__? 2022-01-01
- 哪个更快:if (bool) 或 if(int)? 2022-01-01
- 从父 CMakeLists.txt 覆盖 CMake 中的默认选项(...)值 2021-01-01
- 将函数的返回值分配给引用 C++? 2022-01-01
- 使用 __stdcall & 调用 DLLVS2013 中的 GetProcAddress() 2021-01-01
- OpenGL 对象的 RAII 包装器 2021-01-01
- 将 hdc 内容复制到位图 2022-09-04