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

C++STLの関数を無効にします


ネゲート関数は、値の符号を変更するように、指定された値をネゲートするために使用されます。負の値を正に、またはその逆に変更します。

関数プロトタイプ:

function transform(a_begin, a_end, a1_begin, negate()):
   a_begin = lower bound of the array.
   a_end = upper bound of the array.
   a1_end = Lower bound of the second modified array.
   negate() = to negate the values of the array.

サンプルコード

#include <algorithm>
#include <functional>
#include <iostream>
using namespace std;
int main() {
   int a[] = { 4,6,7, -10, -20, -30 };
   transform(a, a + 6, a, negate<int>());
   for (int i = 0; i < 6; i++)
      cout << a[i] << ' ';
   return 0;
}

出力

-4 -6 -7 10 20 30

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