参考来源:http://www.cplusplus.com/reference/string/string/rfind/
对于 rfind 中的 pos 参数的说法是 pos 是搜索的最后的位置(即截止位置)
string str ("The sixth sick sheik's sixth sheep's sick.");
string key ("sixth");
str.rfind (key, 3 ) // -1
以上结果还能解释的通,即查找的截止字符串是"The " 这个子串
str.rfind (key, 4 ) // 4
这个结果就不知道如何出来的了, 查找的截止字符串不是"The s", 没有找到 key 才对啊???
