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

C ++ STLのビットセットall()関数


ビットセットall()関数は、C ++ STL(標準テンプレートライブラリ)の組み込み関数です。この関数はブール値を返します。呼び出し元のビットセットのすべてのビットが1の場合、戻り値はtrueになります。それ以外の場合、falseが返されます。

この関数はパラメータを受け入れず、ブール値を返します。

構文

Bool bitset_name .all()

サンプル

Bitset = 100101

出力

false

真の値を返すには、セットのすべてのビットが真である必要があるためです。

#include <bits/stdc++.h>
using namespace std;
void printer(bool val){
   if(val){
      cout<< "The bitset has all bits set"<< endl;
   } else{
      cout << "The bitset does not have all bits set"<< endl;
   }
}
int main() {
   bitset<4> bit1(string("1011"));
   bitset<6> bit2(string("111111"));
   cout<<"The bitset is "<<bit1<<endl;
   printer(bit1.all());
   cout<<"The bitset is "<<bit2<<endl;
   printer(bit2.all());
   return 0;
}

出力

The bitset is 1011
The bitset does not have all bits set
The bitset is 111111
The bitset has all bits set

  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() {