次の方法で共有


char_traits::length

文字列の長さを返します。

static size_t length(
   const char_type* _Str
);

パラメーター

  • _Str
    長さが測定された C 文字列。

戻り値

測定されたシーケンスのない null 終端文字を含む要素の数。

使用例

// char_traits_length.cpp
// compile with: /EHsc
#include <string>
#include <iostream>

int main( ) 
{
   using namespace std;
   const char* str1= "Hello";
   cout << "The C-string str1 is: " << str1 << endl;
 
   size_t lenStr1;
   lenStr1 = char_traits<char>::length ( str1 );
   cout << "The length of C-string str1 is: " 
        << lenStr1 << "." << endl;
}
  

必要条件

ヘッダー: <string>

名前空間: std

参照

関連項目

char_traits Struct