std::divides
来自cppreference.com
< cpp | utility | functional
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <functional> 中定义
|
||
template< class T > struct divides; |
||
执行除法的函数对象。有效地调用operator/的两个实例的类型
T
.原文:
Function object for performing division. Effectively calls operator/ on two instances of type
T
.目录 |
[编辑] 会员类型
类型
|
Definition |
result_type
|
T
|
first_argument_type
|
T
|
second_argument_type
|
T
|
[编辑] 成员函数
operator() |
返回的结果的第二个参数,第一个参数的划分 原文: returns the result of the division of the first argument by the second argument (公共成员函数) |
分的std :: ::operator()
T operator()( const T& lhs, const T& rhs ) const; |
||
Returns the result of division of lhs
by rhs
.
Parameters
lhs, rhs | - | 将一个由其他的值
|
Return value
The result of lhs / rhs.
Exceptions
(none)
Possible implementation
T operator()(const T &lhs, const T &rhs) const { return lhs / rhs; } |