how do I write to stdout from an MFC program?(如何从 MFC 程序写入标准输出?)
问题描述
MFC 程序无法正常写入标准输出.MFC 在启动期间对 stdout/stdin 管道做了一些奇怪的事情,而您编写的任何内容(例如执行 printf("hello");) 都会转到/dev/null.
MFC programs can't normally write to stdout. MFC does something weird with the stdout/stdin pipes during startup and anything you write (for example doing a printf("hello");) just goes to /dev/null.
有人知道如何从 MFC 程序成功写入标准输出吗?
Does anyone know how to successfully write to stdout from an MFC program?
感谢阅读.
推荐答案
使用AllocConsole 函数创建一个用于写入的控制台.下面的文章解释了如何使用它来打印到控制台.
Use AllocConsole function to create a console for writing into. The following article explains how to use it to print to console.
为 MFC 应用的调试输出创建控制台
别忘了FreeConsole 一次你已经完成了.
Dont forget to FreeConsole once you're done with it.
这篇关于如何从 MFC 程序写入标准输出?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何从 MFC 程序写入标准输出?
基础教程推荐
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01