命名空间
变体
操作

std::div_sat

来自 cppreference.com
< cpp‎ | numeric
定义在头文件 <numeric>
template< class T >
constexpr T div_sat( T x, T y ) noexcept;
(自 C++26 起)

计算 饱和 除法 x / y。如果 T 是一个有符号整数类型,xT 的最小(最负)值,并且 y == -1,则返回 T 的最大值;否则,返回 x / y

y 必须不能为 0,否则行为未定义。如果发生未定义的行为,则函数调用不是一个 核心常量表达式

仅当 T 是一个 整数类型 时,此重载才参与重载解析,即:signed charshortintlonglong long,扩展有符号整数类型,或此类类型的无符号版本。特别是,T 不能是(可能是 cv 限定的)boolcharwchar_tchar8_tchar16_tchar32_t,因为这些类型不适用于算术运算。

内容

[编辑] 参数

x, y - 整数值

[编辑] 返回值

饱和的 x / y

[编辑] 注释

与整数的内置算术运算符不同,整数提升 不适用于 xy 参数。

如果传递了两个不同类型的参数,则调用将无法编译,即,相对于 模板参数推断 的行为与 std::minstd::max 相同。

大多数现代硬件架构对 SIMD 向量都有对饱和算术的有效支持,包括 x86 的 SSE2 和 ARM 的 NEON。

特性测试 Std 特性
__cpp_lib_saturation_arithmetic 202311L (C++26) 饱和算术

[编辑] 可能的实现

namespace detail {
template<class T>
concept standard_or_extended_integral =
     std::is_integral_v<T> &&
    !std::is_same_v<std::remove_cv_t<T>, bool> &&
    !std::is_same_v<std::remove_cv_t<T>, char> &&
    !std::is_same_v<std::remove_cv_t<T>, char8_t> &&
    !std::is_same_v<std::remove_cv_t<T>, char16_t> &&
    !std::is_same_v<std::remove_cv_t<T>, char32_t> &&
    !std::is_same_v<std::remove_cv_t<T>, wchar_t>;
} // namespace detail
 
template<detail::standard_or_extended_integral T>
constexpr T div_sat( T x, T y ) noexcept
{
    if constexpr (std::is_signed_v<T>)
        if (x == std::numeric_limits<T>::min() && y == -1)
            return std::numeric_limits<T>::max();
    return x / y;
}

[编辑] 示例

可以在 编译器资源管理器 上预览。

#include <climits>
#include <numeric>
 
static_assert
(""
    && (std::div_sat<int>(6, 3) == 2) // not saturated
    && (std::div_sat<int>(INT_MIN, -1) == INT_MAX) // saturated
    && (std::div_sat<unsigned>(6, 3) == 2) // not saturated
);
 
int main() {}

[编辑] 另请参阅

(C++26)
两个整数的饱和加法运算
(函数模板) [编辑]
(C++26)
两个整数的饱和减法运算
(函数模板) [编辑]
(C++26)
两个整数的饱和乘法运算
(函数模板) [编辑]
返回一个限制在另一个整数类型范围内的整数值
(函数模板) [编辑]
(C++17)
将值限制在一对边界值之间
(函数模板) [编辑]
(C++20)
检查整数值是否在给定整数类型的范围内
(函数模板) [编辑]
[静态]
返回给定类型的最小有限值
(std::numeric_limits<T> 的公共静态成员函数) [编辑]
[静态]
返回给定类型的最大有限值
(std::numeric_limits<T> 的公共静态成员函数) [编辑]

[编辑] 外部链接

1.  饱和算术的无分支实现 — Locklessinc.com,2012