亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? basic_string.h

?? linux下編程用 編譯軟件
?? H
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
	basic_string&	_M_replace_dispatch(iterator __i1, iterator __i2, _InputIterator __k1,			    _InputIterator __k2, __false_type);      basic_string&      _M_replace_aux(size_type __pos1, size_type __n1, size_type __n2,		     _CharT __c);      basic_string&      _M_replace_safe(size_type __pos1, size_type __n1, const _CharT* __s,		      size_type __n2);      // _S_construct_aux is used to implement the 21.3.1 para 15 which      // requires special behaviour if _InIter is an integral type      template<class _InIterator>        static _CharT*        _S_construct_aux(_InIterator __beg, _InIterator __end,			 const _Alloc& __a, __false_type)	{          typedef typename iterator_traits<_InIterator>::iterator_category _Tag;          return _S_construct(__beg, __end, __a, _Tag());	}      template<class _InIterator>        static _CharT*        _S_construct_aux(_InIterator __beg, _InIterator __end,			 const _Alloc& __a, __true_type)	{ return _S_construct(static_cast<size_type>(__beg),			      static_cast<value_type>(__end), __a); }      template<class _InIterator>        static _CharT*        _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a)	{	  typedef typename std::__is_integer<_InIterator>::__type _Integral;	  return _S_construct_aux(__beg, __end, __a, _Integral());        }      // For Input Iterators, used in istreambuf_iterators, etc.      template<class _InIterator>        static _CharT*         _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a,		      input_iterator_tag);      // For forward_iterators up to random_access_iterators, used for      // string::iterator, _CharT*, etc.      template<class _FwdIterator>        static _CharT*        _S_construct(_FwdIterator __beg, _FwdIterator __end, const _Alloc& __a,		     forward_iterator_tag);      static _CharT*      _S_construct(size_type __req, _CharT __c, const _Alloc& __a);    public:      /**       *  @brief  Copy substring into C string.       *  @param s  C string to copy value into.       *  @param n  Number of characters to copy.       *  @param pos  Index of first character to copy.       *  @return  Number of characters actually copied       *  @throw  std::out_of_range  If pos > size().       *       *  Copies up to @a n characters starting at @a pos into the C string @a       *  s.  If @a pos is greater than size(), out_of_range is thrown.      */      size_type      copy(_CharT* __s, size_type __n, size_type __pos = 0) const;      /**       *  @brief  Swap contents with another string.       *  @param s  String to swap with.       *       *  Exchanges the contents of this string with that of @a s in constant       *  time.      */      void      swap(basic_string& __s);      // String operations:      /**       *  @brief  Return const pointer to null-terminated contents.       *       *  This is a handle to internal data.  Do not modify or dire things may       *  happen.      */      const _CharT*      c_str() const      { return _M_data(); }      /**       *  @brief  Return const pointer to contents.       *       *  This is a handle to internal data.  Do not modify or dire things may       *  happen.      */      const _CharT*      data() const      { return _M_data(); }      /**       *  @brief  Return copy of allocator used to construct this string.      */      allocator_type      get_allocator() const      { return _M_dataplus; }      /**       *  @brief  Find position of a C substring.       *  @param s  C string to locate.       *  @param pos  Index of character to search from.       *  @param n  Number of characters from @a s to search for.       *  @return  Index of start of first occurrence.       *       *  Starting from @a pos, searches forward for the first @a n characters       *  in @a s within this string.  If found, returns the index where it       *  begins.  If not found, returns npos.      */      size_type      find(const _CharT* __s, size_type __pos, size_type __n) const;      /**       *  @brief  Find position of a string.       *  @param str  String to locate.       *  @param pos  Index of character to search from (default 0).       *  @return  Index of start of first occurrence.       *       *  Starting from @a pos, searches forward for value of @a str within       *  this string.  If found, returns the index where it begins.  If not       *  found, returns npos.      */      size_type      find(const basic_string& __str, size_type __pos = 0) const      { return this->find(__str.data(), __pos, __str.size()); }      /**       *  @brief  Find position of a C string.       *  @param s  C string to locate.       *  @param pos  Index of character to search from (default 0).       *  @return  Index of start of first occurrence.       *       *  Starting from @a pos, searches forward for the value of @a s within       *  this string.  If found, returns the index where it begins.  If not       *  found, returns npos.      */      size_type      find(const _CharT* __s, size_type __pos = 0) const      {	__glibcxx_requires_string(__s);	return this->find(__s, __pos, traits_type::length(__s));      }      /**       *  @brief  Find position of a character.       *  @param c  Character to locate.       *  @param pos  Index of character to search from (default 0).       *  @return  Index of first occurrence.       *       *  Starting from @a pos, searches forward for @a c within this string.       *  If found, returns the index where it was found.  If not found,       *  returns npos.      */      size_type      find(_CharT __c, size_type __pos = 0) const;      /**       *  @brief  Find last position of a string.       *  @param str  String to locate.       *  @param pos  Index of character to search back from (default end).       *  @return  Index of start of last occurrence.       *       *  Starting from @a pos, searches backward for value of @a str within       *  this string.  If found, returns the index where it begins.  If not       *  found, returns npos.      */      size_type      rfind(const basic_string& __str, size_type __pos = npos) const      { return this->rfind(__str.data(), __pos, __str.size()); }      /**       *  @brief  Find last position of a C substring.       *  @param s  C string to locate.       *  @param pos  Index of character to search back from.       *  @param n  Number of characters from s to search for.       *  @return  Index of start of last occurrence.       *       *  Starting from @a pos, searches backward for the first @a n       *  characters in @a s within this string.  If found, returns the index       *  where it begins.  If not found, returns npos.      */      size_type      rfind(const _CharT* __s, size_type __pos, size_type __n) const;      /**       *  @brief  Find last position of a C string.       *  @param s  C string to locate.       *  @param pos  Index of character to start search at (default 0).       *  @return  Index of start of  last occurrence.       *       *  Starting from @a pos, searches backward for the value of @a s within       *  this string.  If found, returns the index where it begins.  If not       *  found, returns npos.      */      size_type      rfind(const _CharT* __s, size_type __pos = npos) const      {	__glibcxx_requires_string(__s);	return this->rfind(__s, __pos, traits_type::length(__s));      }      /**       *  @brief  Find last position of a character.       *  @param c  Character to locate.       *  @param pos  Index of character to search back from (default 0).       *  @return  Index of last occurrence.       *       *  Starting from @a pos, searches backward for @a c within this string.       *  If found, returns the index where it was found.  If not found,       *  returns npos.      */      size_type      rfind(_CharT __c, size_type __pos = npos) const;      /**       *  @brief  Find position of a character of string.       *  @param str  String containing characters to locate.       *  @param pos  Index of character to search from (default 0).       *  @return  Index of first occurrence.       *       *  Starting from @a pos, searches forward for one of the characters of       *  @a str within this string.  If found, returns the index where it was       *  found.  If not found, returns npos.      */      size_type      find_first_of(const basic_string& __str, size_type __pos = 0) const      { return this->find_first_of(__str.data(), __pos, __str.size()); }      /**       *  @brief  Find position of a character of C substring.       *  @param s  String containing characters to locate.       *  @param pos  Index of character to search from (default 0).       *  @param n  Number of characters from s to search for.       *  @return  Index of first occurrence.       *       *  Starting from @a pos, searches forward for one of the first @a n       *  characters of @a s within this string.  If found, returns the index       *  where it was found.  If not found, returns npos.      */      size_type      find_first_of(const _CharT* __s, size_type __pos, size_type __n) const;      /**       *  @brief  Find position of a character of C string.       *  @param s  String containing characters to locate.       *  @param pos  Index of character to search from (default 0).       *  @return  Index of first occurrence.       *       *  Starting from @a pos, searches forward for one of the characters of       *  @a s within this string.  If found, returns the index where it was       *  found.  If not found, returns npos.      */      size_type      find_first_of(const _CharT* __s, size_type __pos = 0) const      {	__glibcxx_requires_string(__s);	return this->find_first_of(__s, __pos, traits_type::length(__s));      }      /**       *  @brief  Find position of a character.       *  @param c  Character to locate.       *  @param pos  Index of character to search from (default 0).       *  @return  Index of first occurrence.       *       *  Starting from @a pos, searches forward for the character @a c within       *  this string.  If found, returns the index where it was found.  If       *  not found, returns npos.       *       *  Note: equivalent to find(c, pos).      */      size_type      find_first_of(_CharT __c, size_type __pos = 0) const      { return this->find(__c, __pos); }      /**       *  @brief  Find last position of a character of string.       *  @param str  String containing characters to locate.       *  @param pos  Index of character to search back from (default end).       *  @return  Index of last occurrence.       *       *  Starting from @a pos, searches backward for one of the characters of       *  @a str within this string.  If found, returns the index where it was       *  found.  If not found, returns npos.      */      size_type      find_last_of(const basic_string& __str, size_type __pos = npos) const      { return this->find_last_of(__str.data(), __pos, __str.size()); }      /**       *  @brief  Find last position of a character of C substring.       *  @param s  C string containing characters to locate.       *  @param pos  Index of character to search back from (default end).       *  @param n  Number of characters from s to search for.       *  @return  Index of last occurrence.       *       *  Starting from @a pos, searches backward for one of the first @a n       *  characters of @a s within this string.  If found, returns the index       *  where it was found.  If not found, returns npos.      */      size_type      find_last_of(const _CharT* __s, size_type __pos, size_type __n) const;      /**       *  @brief  Find last position of a character of C string.       *  @param s  C string containing characters to locate.       *  @param pos  Index of character to search back from (default end).       *  @return  Index of last occurrence.       *       *  Starting from @a pos, searches backward for one of the characters of       *  @a s within this string.  If found, returns the index where it was       *  found.  If not found, returns npos.      */      size_type      find_last_of(const _CharT* __s, size_type __pos = npos) const      {	__glibcxx_requires_string(__s);	return this->find_last_of(__s, __pos, traits_type::length(__s));      }      /**       *  @brief  Find last position of a character.       *  @param c  Character to locate.       *  @param pos  Index of character to search back from (default 0).       *  @return  Index of last occurrence.       *       *  Starting from @a pos, searches backward for @a c within this string.       *  If found, returns the index where it was found.  If not found,       *  returns npos.       *       *  Note: equivalent to rfind(c, pos).      */      size_type      find_last_of(_CharT __c, size_type __pos = npos) const      { return this->rfind(__c, __pos); }      /**       *  @brief  Find position of a character not in string.       *  @param str  String containing characters to avoid.       *  @param pos  Index of character to search from (default 0).       *  @return  Index of first occurrence.       *       *  Starting from @a pos, searches forward for a character not contained       *  in @a str within this string.  If found, returns the index 

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩一级片网址| youjizz国产精品| 日韩精品欧美精品| 久久女同性恋中文字幕| 亚洲成精国产精品女| 久久久www成人免费毛片麻豆| 国内成人精品2018免费看| 亚洲精品乱码久久久久久| 91精品欧美综合在线观看最新| 午夜精品一区二区三区免费视频| 久久久久久99精品| 欧美日韩国产区一| 成人听书哪个软件好| 日韩精品乱码av一区二区| 国产精品电影一区二区| 欧美视频一区二区在线观看| 一区二区三区国产精品| 日韩久久免费av| 91高清视频在线| 国产一区二区主播在线| 亚洲综合精品久久| 亚洲激情综合网| 成人欧美一区二区三区在线播放| 欧美在线影院一区二区| av色综合久久天堂av综合| 久久国产三级精品| 国产综合久久久久久鬼色| 亚洲18色成人| 日韩 欧美一区二区三区| 午夜精品免费在线| 爽爽淫人综合网网站| 国产精品国产成人国产三级| 国产精品传媒在线| 中文字幕精品在线不卡| 中文字幕一区二区三区在线不卡 | 日韩网站在线看片你懂的| 亚洲精品一区二区三区在线观看| 久久精品视频在线免费观看| 成人欧美一区二区三区| 日本一区二区三区高清不卡| 亚洲大片一区二区三区| 另类综合日韩欧美亚洲| 成人综合婷婷国产精品久久| 在线欧美一区二区| 欧美r级在线观看| xnxx国产精品| 在线播放中文一区| 欧美美女视频在线观看| 欧美国产国产综合| 日本视频在线一区| 成人18视频在线播放| 欧美理论在线播放| 国产精品乱码一区二三区小蝌蚪| 五月天婷婷综合| 91在线观看地址| 日本韩国一区二区| 亚洲国产高清在线| 麻豆国产精品一区二区三区| 国产大陆亚洲精品国产| 欧美日韩中字一区| 亚洲黄色免费电影| 粉嫩一区二区三区在线看 | 亚洲精品水蜜桃| 亚洲一区二区三区自拍| 粉嫩欧美一区二区三区高清影视| 精品视频全国免费看| 久久精品欧美日韩| 性感美女极品91精品| 首页国产欧美日韩丝袜| 国产精品资源在线观看| 在线视频一区二区三| 国产精品久久久久影院亚瑟| 国产综合色精品一区二区三区| 99久久精品国产导航| 久久久精品中文字幕麻豆发布| 亚洲色图色小说| 国产乱子轮精品视频| 精品久久一区二区三区| 天天影视色香欲综合网老头| 成人av在线影院| 久久综合给合久久狠狠狠97色69| 久久免费视频色| av在线播放不卡| 午夜精品123| 欧美猛男男办公室激情| 亚洲丝袜制服诱惑| 欧美美女直播网站| 国产精品综合网| 成人欧美一区二区三区1314| 91麻豆蜜桃一区二区三区| 日本一区二区视频在线观看| 黄页网站大全一区二区| 国产女人18毛片水真多成人如厕| 成人av集中营| 亚洲国产成人高清精品| 日韩视频一区二区三区| 国产999精品久久| 国产精品天天摸av网| av男人天堂一区| 亚洲在线免费播放| 欧美一区二视频| 国产毛片精品国产一区二区三区| 国产亚洲一区字幕| 色综合色综合色综合色综合色综合| 亚洲品质自拍视频网站| 欧美图片一区二区三区| 日韩av不卡在线观看| 国产精品国产三级国产专播品爱网| 91麻豆6部合集magnet| 久久精品国产久精国产| 欧美一区永久视频免费观看| 狠狠久久亚洲欧美| 欧美激情在线一区二区| 欧美综合欧美视频| 国产白丝网站精品污在线入口| 一区二区中文字幕在线| 成人av在线电影| 亚洲chinese男男1069| 老司机精品视频线观看86| 久久99深爱久久99精品| 日本福利一区二区| 又紧又大又爽精品一区二区| 亚洲精品成人在线| 欧美伊人久久久久久久久影院| 亚洲黄色在线视频| 91黄色免费版| 亚洲精品美国一| 在线精品视频一区二区三四| 日韩久久一区二区| 色综合久久88色综合天天6| 亚洲欧美偷拍三级| 亚洲男人的天堂av| 在线亚洲一区二区| 婷婷国产在线综合| 日韩午夜小视频| 另类欧美日韩国产在线| 国产欧美一区二区精品久导航 | 国产精品综合二区| 欧美精品一区二| 成人一级片在线观看| 最新不卡av在线| 国产精品香蕉一区二区三区| 国产精品女主播av| 在线中文字幕一区| 毛片一区二区三区| 久久久99久久| 99精品视频在线播放观看| 亚洲地区一二三色| 精品久久久久99| 国产麻豆精品视频| 亚洲综合一区二区三区| 555夜色666亚洲国产免| 成人一区二区三区在线观看| 亚洲精品欧美专区| 91精品久久久久久久99蜜桃| 狠狠色丁香九九婷婷综合五月| 国产精品污www在线观看| 色吊一区二区三区 | 91色在线porny| 午夜精品成人在线| 久久中文字幕电影| 色域天天综合网| 亚洲视频在线观看三级| 在线不卡的av| 成人免费看片app下载| 亚洲一线二线三线视频| 日韩精品自拍偷拍| 福利一区二区在线观看| 视频一区二区三区中文字幕| 欧美精品一区二区三区在线| 成人午夜精品一区二区三区| 亚洲精品视频在线看| 7777精品伊人久久久大香线蕉完整版 | 一区二区三区欧美| 欧美成人video| 97久久久精品综合88久久| 日本不卡视频在线观看| 国产精品久久99| 日韩免费在线观看| 91在线视频在线| 久久99国产精品免费| 一区二区在线观看视频| 精品久久久久久久人人人人传媒| 不卡电影一区二区三区| 日韩电影在线看| 国产精品乱码一区二区三区软件| 在线不卡的av| 91丨九色丨尤物| 国产最新精品免费| 亚洲成人自拍偷拍| 国产精品久久久一本精品| 欧美一区二区三区在线观看| 97久久精品人人做人人爽50路 | 国产一级精品在线| 视频一区欧美日韩| 亚洲男同性恋视频| 欧美极品少妇xxxxⅹ高跟鞋| 欧美一区二区三区在线电影| 91久久奴性调教| 粉嫩高潮美女一区二区三区|