SafeDivide
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
Divides two numbers in a way that protects against dividing by zero.
template<typename T, typename U> inline bool SafeDivide ( T t, U u, T& result ) throw ();
Parameters
[in] t
The divisor. This must be of type T.
[in] u
The dividend. This must be of type U.
[out] result
The parameter where SafeDivide stores the result.
true if no error occurs; false if an error occurs.
This method is part of SafeInt Library and is designed for a single division operation without creating an instance of the SafeInt Class.
This method should only be used when a single mathematical operation must be protected. If there are multiple operations, you should use the |
For more information about the template types T and U, see SafeInt Functions.
Header: safeint.h
Namespace: Microsoft::Utilities
SafeInt Functions
SafeInt Library
SafeInt Class
SafeModulus
SafeMultiply