名前空間
変種
操作

std::match_results<BidirIt,Alloc>::max_size

提供: cppreference.com
< cpp‎ | regex‎ | match results
2012年10月26日 (金) 07:00時点におけるTranslationBot (トーク | 投稿記録)による版

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)

 
 
正規表現ライブラリ
クラス
(C++11)
アルゴリズム
イテレータ
例外
特性
定数
(C++11)
正規表現の文法
 
 
size_type max_size() const;
(C++11以上)
match_resultsタイプが原因でシステムやライブラリの実装上の制限に保持することができるサブマッチの最大数を返し、すなわちstd::distance(begin(), end())サブマッチの最大数の.
Original:
Returns the maximum number of submatches the match_results type is able to hold due to system or library implementation limitations, i.e. std::distance(begin(), end()) for the largest number of submatches.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

目次

パラメータ

(なし)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

値を返します

サブマッチの最大数を指定します
Original:
Maximum number of submatches
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

例外

noexcept 指定:  
noexcept
  

複雑

定数.
Original:
Constant.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.