C++在字符串前加一个L作用:

在字符串前加一个L作用:  
  如 L"我的字符串" 表示将ANSI字符串转换成unicode的字符串,就是每个字符占用两个字节。  
  strlen("asd") = 3;   
  strlen(L"asd") = 6;  

原文地址:https://www.cnblogs.com/jiahuafu/p/5236047.html