Skip to content

Latest commit

 

History

History
81 lines (69 loc) · 1.94 KB

File metadata and controls

81 lines (69 loc) · 1.94 KB
title SafeAdd | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-windows
ms.tgt_pltfrm
ms.topic language-reference
f1_keywords
SafeAdd
dev_langs
C++
helpviewer_keywords
SafeAdd function
ms.assetid 3f82b91d-59fe-4ee1-873b-d056182fa8be
caps.latest.revision 5
author ghogen
ms.author ghogen
manager ghogen
translation.priority.ht
cs-cz
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
pl-pl
pt-br
ru-ru
tr-tr
zh-cn
zh-tw

SafeAdd

Adds two numbers in a way that protects against overflow.

Syntax

template<typename T, typename U>  
inline bool SafeAdd (  
   T t,  
   U u,  
   T& result  
) throw ();  

Parameters

[in] t
The first number to add. This must be of type T.

[in] u
The second number to add. This must be of type U.

[out] result
The parameter where SafeAdd stores the result.

Return Value

true if no error occurs; false if an error occurs.

Remarks

This method is part of SafeInt Library and is designed for a single addition operation without creating an instance of the SafeInt Class.

Note

This method should only be used when a single mathematical operation must be protected. If there are multiple operations, you should use the SafeInt class instead of calling the individual stand-alone functions.

For more information about the template types T and U, see SafeInt Functions.

Requirements

Header: safeint.h

Namespace: Microsoft::Utilities

See Also

SafeInt Functions
SafeInt Library
SafeInt Class
SafeSubtract