CR的代码文本

all for learning about the world
  订阅 订阅  :: 管理

2009年11月20日

摘要: std::string chars = "abcd";std::string str = "0123a5678abcd";str.find(chars)的值是9str.find_first_of(chars)的值是4解释:find()是从str 中查找第一次完全匹配于 chars 的位置。find_first_if() 是从str 中查找匹配于 chars 中任一字符的位置。此时的chars 更多... 阅读全文

posted @ 2009-11-20 12:48 mumuliang 阅读(1078) 评论(0) 推荐(0) 编辑