この関数は、文字列の長さをバイト単位で返すために使用されます。これは、文字列オブジェクトの内容に適合する実際のバイト数を定義しますが、必ずしも容量と同じである必要はありません。
営業四半期
構文
次のような名前の文字列オブジェクトを考えます。 'str' 。この文字列オブジェクトのサイズを計算するには、その構文は次のようになります。
str.size()
パラメーター
この関数にはパラメータが含まれていません。
戻り値
この関数は、文字列オブジェクト内に存在する文字数を返します。
Java文字列の長さ
例1
#include using namespace std; int main() { string str ='Welcome to the javatpoint tutorial'; int size = str.size(); cout << 'length of the string is :' <<size; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> length of the string is : 34 </pre> <p>In this example, str is a string object containing value 'Welcome to the javatpoint tutorial'. We calculate the length of the string using 'size' function. </p> <br></size;>
この例では、 str は値「javatpoint チュートリアルへようこそ」を含む文字列オブジェクトです。 「size」関数を使用して文字列の長さを計算します。