你的位置:首页 > 信息动态 > 新闻中心
信息动态
联系我们

wstring 大小写转换 性能

2022/1/1 18:23:26
#include <algorithm>
transform(str.begin(), str.end(), str.begin(), ::tolower);

效率远远高于boost::to_upper(str)