Forholdsmanipulationer i C ++ | Sæt 2 (sammenligning)

Forudsætning - Forholdsmanipulationer i C ++ | Sæt 1 (aritmetik)
I C ++ The Header -fil giver os mulighed for at manipulere forhold ved hjælp af forskellige indbyggede skabelonalias. Headerfilen blev introduceret fra C ++ 11 og fremefter. I denne artikel vil vi diskutere sammenligningen af ​​forholdsmanipulationer i C ++. Følgende funktioner bruges:

  • Ratio_equal
  • Ratio_not_equal
  • Ratio_Greater
  • Ratio_less
  • Ratio_greater_equal
  • Ratio_less_equal

1. Ratio_equal: Denne skabelon alias kontrollerer, om forhold i sine argumenter er ens . Returnerer sandt, hvis lig med andet returnerer falsk. Det returnerer a Boolsk medlem konstant 'værdi'
2. Ratio_not_equal: Denne skabelon alias kontrollerer, om forhold I dens argumenter er ikke ens . Returnerer sandt, hvis ikke lige andet, hvis lige returnerer falsk. Det returnerer a Boolsk medlem konstant 'værdi' .  

CPP
   // C++ code to demonstrate the working of   // ratio_equal and ratio_not_equal   #include          #include         // for ratio manipulation   using     namespace     std  ;   // Driver Code   int     main  ()   {      // Declaring ratios      typedef     ratio   <  10       100  >     ratio1  ;      typedef     ratio   <  1       10  >     ratio2  ;      // Checking if ratios are equal using ratio_equal      ratio_equal   <  ratio1       ratio2  >::  value      ?     cout      < <     'Ratios are equal'      :     cout      < <     'Ratios are not equal'  ;      cout      < <     endl  ;      // Checking if ratios are not equal using      // ratio_not_equal      ratio_not_equal   <  ratio1       ratio2  >::  value      ?     cout      < <     'Ratios are not equal'      :     cout      < <     'Ratios are equal'  ;      return     0  ;   }   

Produktion
Ratios are equal Ratios are equal 

3. Ratio_Greater: Denne midlertidige alias kontrollerer, om Ratio1 er større end Ratio2 . Det Returnerer et boolsk medlem konstant 'værdi' hvilket returnerer sandt, hvis forhold 1 er større end Ratio2 ellers returnerer falsk.
4. Ratio_less: Denne midlertidige alias kontrollerer, om Ratio1 er mindre end Ratio2 . Det Returnerer et boolsk medlem konstant 'værdi' hvilket returnerer sandt, hvis forhold 1 er mindre end Ratio2 ellers returnerer falsk. 

CPP
   // C++ code to demonstrate the working of   // ratio_greater and ratio_less   #include          #include         // for ratio manipulation   using     namespace     std  ;   // Driver Code   int     main  ()   {      // Declaring ratios      typedef     ratio   <  10       100  >     ratio1  ;      typedef     ratio   <  11       100  >     ratio2  ;      // Checking if ratio1 is greater than ratio2      // using ratio_greater      ratio_greater   <  ratio1       ratio2  >::  value      ?     cout      < <     'ratio1 is greater than ratio2'      :     cout      < <     'ratio1 is not greater than ratio2'  ;      cout      < <     endl  ;      // Checking if ratio1 is less than ratio2      // using ratio_less      ratio_less   <  ratio1       ratio2  >::  value      ?     cout      < <     'ratio1 is less than ratio2'      :     cout      < <     'ratio1 is not less than ratio2'  ;      cout      < <     endl  ;      return     0  ;   }   

Produktion
ratio1 is not greater than ratio2 ratio1 is less than ratio2 

5. Ratio_Greater_equal: Denne midlertidige alias kontrollerer, om Ratio1 er større eller lige end Ratio2 . Det Returnerer et boolsk medlem konstant 'værdi' hvilket returnerer sandt, hvis forhold 1 er større eller lige end Ratio2, ellers returnerer falsk.
6. Ratio_less_equal: Denne midlertidige alias kontrollerer, om Ratio1 er mindre eller lige end Ratio2 . Det Returnerer et boolsk medlem konstant 'værdi' hvilket returnerer sandt, hvis forhold 1 er mindre eller lige end Ratio2, ellers returnerer falsk. 

CPP
   // C++ code to demonstrate the working of   // ratio_greater_equal and ratio_less_equal   #include          #include         // for ratio manipulation   using     namespace     std  ;   // Driver Code   int     main  ()   {      // Declaring ratios      typedef     ratio   <  10       100  >     ratio1  ;      typedef     ratio   <  1       10  >     ratio2  ;      // Checking if ratio1 is greater or equal than ratio2      // using ratio_greater_equal      ratio_greater_equal   <  ratio1       ratio2  >::  value      ?     cout      < <     'ratio1 is greater or equal than ratio2'      :     cout      < <     'ratio1 is not greater or equal than '      'ratio2'  ;      cout      < <     endl  ;      // Checking if ratio1 is less or equal than ratio2      // using ratio_less_equal      ratio_less_equal   <  ratio1       ratio2  >::  value      ?     cout      < <     'ratio1 is less or equal than ratio2'      :     cout      < <     'ratio1 is not less or equal than ratio2'  ;      cout      < <     endl  ;      return     0  ;   }   

Produktion
ratio1 is greater or equal than ratio2 ratio1 is less or equal than ratio2