名前空間
変種
操作

「cpp/string/char traits/length」の版間の差分

提供: cppreference.com
< cpp‎ | string‎ | char traits
(Translated from the English version using Google Translate)
 
(1版:Translate from the English version)

2012年10月30日 (火) 20:42時点における版

std::size_t length( const CharT* s );
ですsが指す文字列の長さ、終端のnull文字(Char())の位置を返します。.
Original:
Returns the length of the character sequence pointed to by s, that is, the position of the terminating null character (Char()).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

目次

パラメータ

s -
の長さを返すために文字配列へのポインタ
Original:
pointer to a character sequence to return length of
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

値を返します

文字列の長さはsによって指さ.
Original:
The length of character sequence pointed to by s.
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:
Linear.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.