当入口函数不是main,是_tWinMain 等windows 相关的入口函数时候
这样就可用std::cout 来输出
AllocConsole(); freopen("CONIN$", "r", stdin); freopen("CONOUT$", "w", stdout); freopen("CONOUT$", "w", stderr); AppDelegate app; Application::getInstance()->run(); FreeConsole();
本文共 299 字,大约阅读时间需要 1 分钟。
当入口函数不是main,是_tWinMain 等windows 相关的入口函数时候
这样就可用std::cout 来输出
AllocConsole(); freopen("CONIN$", "r", stdin); freopen("CONOUT$", "w", stdout); freopen("CONOUT$", "w", stderr); AppDelegate app; Application::getInstance()->run(); FreeConsole();
转载于:https://my.oschina.net/kkkkkkkkkkkkk/blog/736040