win32 c++ fstream 宽参数

发布于 2024-09-13 23:07:26 字数 380 浏览 9 评论 0原文

请参阅链接了解我正在谈论的内容。

我想使用链接中的第 1 点,并

#define tfopen _wfopen
#define _T(s) L##s

完全按照链接所说的进行操作:

std::ifstream file( tfopen("filename.txt", _T("r") );

但是 gcc (mingw) 4.4 说没有匹配的调用...

我做错了吗,还是上面链接中的信息不正确?

See link for what I'm talking about.

I want to use point 1 in the link and

#define tfopen _wfopen
#define _T(s) L##s

to do exactly what the link says is possible:

std::ifstream file( tfopen("filename.txt", _T("r") );

But gcc (mingw) 4.4 says there's no matching call...

Am I doing it wrong or is the info in the link above incorrect?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

嘦怹 2024-09-20 23:07:26

您需要使用宏作为 tfopen 的第一个参数,在您的情况下是“filename.txt”

std::ifstream file( tfopen(_T("filename.txt"), _T("r") );

You need to use the macro for the first parameter to tfopen, which in your case is "filename.txt"

std::ifstream file( tfopen(_T("filename.txt"), _T("r") );
岁月静好 2024-09-20 23:07:26

The simple answer is that you're missing a _T. However, you may want to rethink the entire TCHAR approach and just call _wfopen (assuming Windows-only code).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文