transform(str.begin(), str.end(), str.begin(),tolower)编译失败

解决方法有以下三种:
1.transform(str.begin(), str.end(), str.begin(), ::tolower)
2.transform((str.begin(), str.end(), str.begin() begin(s), static_cast(tolower))
3.transform(transform(str.begin(), str.end(), str.begin(), [](const unsigned char i){ return tolower(i); })

产生问题的原因是中都定义了这个tolower,并且都在std namespace里面。
locale :template T tolower(T, const locale&)
cctype:int tolower(int)

解决思路:
1.locale中定义的tolower不在global namespace里面。
2.用static_cast强制转换消除不确定性。
3.用lamda接收unsigned char,然后传给tolower。

第三种方法是最好的方法,原因如下:
1.第一种方法成功的的条件是cctype定义的tolower要在global namespace里面,但是这是不确定的。

It is unspecified whether these names are first declared or defined within namespace scope (3.3.6) of the namespace std and are then injected into the global namespace scope by explicit using-declarations (7.3.3)

2 如果传给tolower的参数不能表示为unsigned char,那结果是不确定的。
char 表示signed还是unsigned 是取决于具体的实现的,是不确定的。而string的元素就是char,所以把string 的元素传给tolower可能导致不确定的结果。
解决办法是之前做一步强制类型转换。

你可能感兴趣的:(AI)