Files
safe_numerics/examples/example4.cpp
Robert Ramey 09fcc41a2a Merge commit '6bd16a0ec91c800000b939e19972ad44f6d79feb' into develop
# Conflicts:
#	doc/boostbook/cpp.xml
#	doc/boostbook/eliminate_runtime_penalty.xml
#	doc/boostbook/exception_policy_concept.xml
#	doc/boostbook/promotion_policy_concept.xml
#	doc/boostbook/safe.xml
#	doc/boostbook/safe_introduction.xml
#	doc/boostbook/safe_numeric_concept.xml
#	doc/boostbook/safe_range.xml
#	doc/boostbook/trap_exception.xml
#	doc/boostbook/tutorial.xml
#	examples/example7.cpp
2017-04-08 13:55:54 -07:00

47 lines
1.3 KiB
C++

#include <exception>
#include <iostream>
#include "../include/safe_integer.hpp"
int main(){
std::cout << "example 3: ";
std::cout << "implicit conversions change data values" << std::endl;
std::cout << "Not using safe numerics" << std::endl;
// problem: implicit conversions change data values
try{
signed int a{-1};
unsigned int b{1};
if(a < b){
std::cout << "a is less than b\n";
}
else{
std::cout << "b is less than a\n";
}
}
catch(std::exception){
// never arrive here - just produce the wrong answer!
std::cout << "error detected!" << std::endl;
}
// solution: replace int with safe<int> and unsigned int with safe<unsigned int>
std::cout << "Using safe numerics" << std::endl;
try{
using namespace boost::numeric;
safe<signed int> a{-1};
safe<unsigned int> b{1};
if(a < b){
std::cout << "a is less than b\n";
}
else{
std::cout << "b is less than a\n";
}
}
catch(std::exception & e){
// never arrive here - just produce the correct answer!
std::cout << e.what() << std::endl;
std::cout << "error detected!" << std::endl;
}
return 0;
}