當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ String size()用法及代碼示例


此函數用於以字節為單位返回字符串的長度。它定義了符合字符串對象內容的實際字節數,不一定等於容量。

用法

考慮一個名為 'str' 的字符串對象。要計算此字符串對象的大小,其語法為:

str.size()

參數

該函數不包含任何參數。

返回值

此函數返回字符串對象中存在的字符數。

例子1

#include<iostream>
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;
}

輸出:

length of the string is:34

在這個例子中,str 是一個字符串對象,其中包含值“Welcome to the javatpoint tutorial”。我們使用 'size' 函數計算字符串的長度。






相關用法


注:本文由純淨天空篩選整理自 C++ String size()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。