std::divides
来自 cppreference.com
< cpp | utility | functional
定义在头文件 <functional> 中 |
||
template< class T > struct divides; |
(直到 C++14) | |
template< class T = void > struct divides; |
(自 C++14 起) | |
用于执行除法的函数对象。实际上是对两个类型为 T
的实例调用 operator/。
内容 |
[编辑] 特化
标准库提供了
|
(自 C++14 起) |
[编辑] 成员类型
类型 | 定义 |
result_type (C++17 中已弃用)(C++20 中已删除) |
T
|
first_argument_type (C++17 中已弃用)(C++20 中已删除) |
T
|
second_argument_type (C++17 中已弃用)(C++20 中已删除) |
T
|
这些成员类型是通过公开继承 std::binary_function<T, T, T> 获得的。 |
(直到 C++11) |
[编辑] 成员函数
operator() |
返回第一个参数除以第二个参数的结果 (公共成员函数) |
std::divides::operator()
T operator()( const T& lhs, const T& rhs ) const; |
(自 C++14 起为 constexpr) | |
返回 lhs 除以 rhs 的结果。
参数
lhs, rhs | - | 要互相除的值 |
返回值
lhs / rhs 的结果。
[编辑] 异常
可能会抛出实现定义的异常。
可能的实现
constexpr T operator()(const T& lhs, const T& rhs) const { return lhs / rhs; } |