gpt4 book ai didi

visual-c++ - 如何在 Windows 通用 C++ 项目中打印

转载 作者:行者123 更新时间:2023-12-03 16:07:51 28 4
gpt4 key购买 nike

问这个问题我觉得很愚蠢,但老实说我不明白为什么不能使用 System 命名空间!我究竟做错了什么?有没有其他方法可以在输出中打印一行?
(我正在使用 Visual Studio 2015)

最佳答案

I can't understand why System namespace can't be used



Windows 通用应用程序与传统桌面应用程序完全不同,请查看 Windows Runtime APIsWin32 and COM API其中列出了支持在 UWP 应用中使用的所有 Win32 和 COM API。

Is there any other way to print a single line in the output? (I am using Visual Studio 2015)



如果您需要将消息打印到输出窗口,请使用 OutputDebugString function在 UWP C++/CX 项目中,添加#include 来访问它,例如:
void CPPUWPApp1::MainPage::LogMessage(Object^ parameter)
{
auto paraString = parameter->ToString();
auto formattedText = std::wstring(paraString->Data()).append(L"\r\n");
OutputDebugString(formattedText.c_str());
}

用法:
LogMessage("Hello World!");

关于visual-c++ - 如何在 Windows 通用 C++ 项目中打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33103125/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com