如何_T()&& wcsstr工作

时间:2017-09-14 09:08:27

标签: c++

我在这一行中有错误 //(wcsstr(url_buffer,_T(l))任何人都可以向我展示我该怎么做 以及wcsstr和_T如何运作 什么是" T"用字符串表示。例如_T(" Hello")。我在需要unicode支持的项目中看到了这一点 任何人都可以帮助我

@BindingAdapter("imageUrl", "placeholder", requireAll = false/true)

1 个答案:

答案 0 :(得分:0)

_T()和所有"Generic-Text Mappings in Tchar.h"内容都是Microsoft特定的方式,允许在MBCS or UNICODE模式下编译C ++代码而无需更改源代码。

_T()宏只能用于字符串文字,即:

  _T("This is a string literal");  

但不要将std :: string转换为std :: wstring。

有关C ++上下文中字符串文字的更多详细信息,请参阅here