#include <string>
#include <algorithm> void test()
{
  std::string strA="QQQQWWWqqqqqqwwwwwww;   //std::string的大小写转换
  transform(strA.begin(), strA.end(), strA.begin(), ::toupper);
  transform(strA.begin(), strA.end(), strA.begin(), ::tolower);
}
04-16 02:34