C++在字符串前加一个L作用: 在字符串前加一个L作用: 如 L"我的字符串" 表示将ANSI字符串转换成unicode的字符串,就是每个字符占用两个字节。 strlen("asd") = 3; strlen(L"asd") = 6; posted on 2016-03-02 18:21 jiahuafu 阅读(...) 评论(...) 编辑 收藏