标题: WriteFile,WriteConsole和_tprintf的一些差别
作者: Demon
链接: https://demon.tw/copy-paste/writefile-writeconsole-_tprintf.html
版权: 本博客的所有文章,都遵守“署名-非商业性使用-相同方式共享 2.5 中国大陆”协议条款。
WriteFile,WriteConsole和_tprintf的一些差别
这几个API都是用于输出的,但都有各自的特点:
1. _tprintf的实现利用了WriteFile和WideCharToMultiByte。
2. WriteFile只接受字节流,没有UNICODE的概念,WriteFile可以实现重定向。
3. WriteConsole有两个版本WriteConsoleA和WriteConsoleW, 可以分别接收ANSI和UNICODE字符串,不支持重定向。
原文链接:http://junc76.blogspot.com/2009/04/writefilewriteconsoletprintf.html
赞赏微信赞赏支付宝赞赏
随机文章: