C ++
 Computer >> コンピューター >  >> プログラミング >> C ++

C ++ STLのiswspace()関数


この記事では、C ++のiswspace()関数、その構文、動作、および戻り値について説明します。

iswspace()関数は、ヘッダーファイルで定義されているC++の組み込み関数です。この関数は、渡されたワイド文字が空白文字であるかどうかをチェックします。この関数は、isspace()と同等のワイド文字です。つまり、isspace()と同じように機能しますが、ワイド文字をサポートしている点が異なります。この関数は、渡された引数が空白(‘‘)であるかどうかをチェックし、ゼロ以外の整数値(true)を返し、そうでない場合はゼロ(false)を返します

構文

int iswspace(wint_t ch);

この関数は、1つのパラメーター、つまりチェックされるワイド文字のみを受け入れます。引数はwint_tまたはWEOFでキャストされます。

wint_tは、不可欠なタイプのデータを格納します。

戻り値

この関数は整数値を返します。整数値は、0(falseの場合)またはゼロ以外の値(trueの場合)のいずれかになります。

#include <iostream>
#include <cwctype>
using namespace std;
int main() {
   wint_t a = '.';
   wint_t b = ' ';
   wint_t c = '1';
   iswspace(a)?cout<<"\nIts white space character":cout<<"\nNot white space character";
   iswspace(b)?cout<<"\nIts white space character":cout<<"\nNot white space character";
   iswspace(c)?cout<<"\nIts white space character":cout<<"\nNot white space character";
}

出力

上記のコードを実行すると、次の出力が生成されます-

Not white space character
Its white space character
Not white space character

#include <iostream>
#include <cwctype>
using namespace std;
int main () {
   int i, count;
   wchar_t s[] = L"I am visiting tutorials point";
   count = i = 0;
   while (s[i]) {
      if(iswspace(s[i]))
         count++;
      i++;
   }
   cout<<"There are "<<count <<" white space characters.\n";
   return 0;
}

出力

上記のコードを実行すると、次の出力が生成されます-

There are 4 white space characters.

  1. C ++ STLのcosh()関数

    cosh()関数は、ラジアンで指定された角度の双曲線正弦を返します。これはC++STLに組み込まれている関数です。 cosh()関数の構文は次のとおりです。 cosh(var) 構文からわかるように、関数cosh()は、データ型float、double、またはlongdoubleのパラメーターvarを受け入れます。 varの双曲線コサインを返します。 C ++でcosh()を示すプログラムは次のとおりです- 例 #include <iostream> #include <cmath> using namespace std; int main() {  

  2. C ++ STLのsinh()関数

    sinh()関数は、ラジアンで指定された角度の双曲線正弦を返します。これはC++STLに組み込まれている関数です。 sinh()関数の構文は次のとおりです。 sinh(var) 構文からわかるように、関数sinh()は、データ型float、double、またはlongdoubleのパラメーターvarを受け入れます。 varの双曲線サインを返します。 C ++でsinh()を示すプログラムは次のとおりです。 例 #include <iostream> #include <cmath> using namespace std; int main() {