- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
给定以下用户定义的类型 S
,它具有到 double 的转换函数:
struct S
{
operator double() { return 1.0;}
};
以及以下对 cmath 的调用使用 S
类型的函数:
#include <cmath>
void test(S s) {
std::sqrt(s);
std::log(s);
std::isgreater(s,1.0);
std::isless(s,1.0);
std::isfinite(s) ;
}
此代码使用 libstdc++
( see it live ) 使用 gcc
编译,但使用 使用
它为几个调用 ( see it live ) 生成错误,并为 isgreater 生成以下错误:clang
libc++
error: no matching function for call to 'isgreater'
std::isgreater(s,1.0);
^~~~~~~~~~~~~~
note: candidate template ignored: disabled by 'enable_if' [with _A1 = S, _A2 = double]
std::is_arithmetic<_A1>::value &&
^
和 isless 的类似错误和 isfinite , 所以 libc++
期望这些调用的参数是 arithmetic types S
不是,我们可以通过查看 libc++ cmath header 的源代码来确认这一点.虽然,libc++
中的所有 cmath
函数对算术类型的要求并不一致。
所以问题是,将非算术类型作为参数传递给 cmath
函数是否有效?
最佳答案
长话短说
根据标准,将非算术类型作为参数传递给 cmath
是有效的功能但有缺陷报告2068
争论的初衷是cmath
函数应限制为算术类型,并且使用非算术参数似乎最终可能会变得格式错误。因此,尽管根据缺陷报告 2068
,使用非算术类型作为参数在技术上是有效的似乎值得怀疑.
详情
cmath header 包含在标准草案部分26.8
[c.math] 为 math.h 中定义的每个函数提供额外的 float 和 long double 重载需要一个double 参数和进一步的段落11
提供足够的重载并说:
Moreover, there shall be additional overloads sufficient to ensure:
- If any argument corresponding to a double parameter has type long double, then all arguments corresponding to double parameters are effectively cast to long double.
- Otherwise, if any argument corresponding to a double parameter has type double or an integer type, then all arguments corresponding to double parameters are effectively cast to double.
- Otherwise, all arguments corresponding to double parameters are effectively cast to float.
这似乎在 C++11 中有效
在 C++11 部分 26.8
[c.math] 不包括任何禁止对 cmath
进行非算术参数的限制职能。在问题的每种情况下,我们都有一个可用的重载,它采用 double 个参数,这些应该通过 overload resolution 选择。 .
缺陷报告 2086
但对于 C++14,我们有 defect report 2086: Overly generic type support for math functions ,它认为第 26.8
节的初衷[c.math] 是为了限制 cmath
仅对算术类型有效的函数,这将模仿它们在C中的工作方式:
My impression is that this rule set is probably more generic as intended, my assumption is that it is written to mimic the C99/C1x rule set in 7.25 p2+3 in the "C++" way [...] (note that C constraints the valid set to types that C++ describes as arithmetic types, but see below for one important difference) [...]
并说:
My current suggestion to fix these problems would be to constrain the valid argument types of these functions to arithmetic types.
并改写了部分 26.8
款11
说(强调我的):
Moreover, there shall be additional overloads sufficient to ensure:
- If any arithmetic argument corresponding to a double parameter has type long double, then all arithmetic arguments corresponding to double parameters are effectively cast to long double.
- Otherwise, if any arithmetic argument corresponding to a double parameter has type double or an integer type, then all arithmetic arguments corresponding to double parameters are effectively cast to double.
- Otherwise, all arithmetic arguments corresponding to double parameters are effectively cast to
are effectively cast tohave type float.
所以这在 C++14 中是无效的?
好吧,尽管意图如此,但从技术上看,它在 libc++ bug report: incorrect implementation of isnan and similar functions 中的讨论中的评论中仍然有效。 :
That may have been the intent, but I don't see any way to read the standard's wording that way. From the example in comment#0:
std::isnan(A());
There are no arguments of arithmetic type, so none of the bullets in 26.8/11 apply. The overload set contains 'isnan(float)', 'isnan(double)', and 'isnan(long double)', and 'isnan(float)' should be selected.
因此,DR 2086
的改写段落 11 不会导致调用 float、double 和 long double 重载的格式错误带有非算术参数。
技术上有效但使用有问题
所以虽然C++11和C++14标准不限制cmath
算术参数的函数 DR 2068
争论 26.8
的意图款11
是限制cmath
函数只接受算术参数,显然是为了弥补 C++14 中的漏洞,但没有提供足够强的限制。
依赖一个在未来版本的标准中可能变得格式错误的特性似乎是有问题的。由于我们有实现分歧,任何依赖于将非算术参数传递给 cmath
的代码这些案例的功能是不可移植的,因此仅在有限的情况下有用。我们有一个替代解决方案,即显式地将非算术类型转换为算术类型,这绕过了整个问题,我们不再需要担心代码变得病态并且它是可移植的:
std::isgreater( static_cast<double>(s) ,1.0)
^^^^^^^^^^^^^^^^^^^^^^
正如 Potatoswatter 指出的那样使用一元 +
也是一个选项:
std::isgreater( +s ,1.0)
更新
作为 T.C.在 C++11 中指出,可以认为 26.8
款11
项目符号 3
适用,因为参数既不是 long double、double 也不是整数,因此应该是 S
类型的参数应该首先转换为float。注意,如缺陷报告所示 gcc
从来没有实现过这个,据我所知也没有clang
.
关于c++ - 将非算术类型作为参数传递给 cmath 函数是否有效?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30766491/
我正在尝试编写一个相当多态的库。我遇到了一种更容易表现出来却很难说出来的情况。它看起来有点像这样: {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE
谁能解释一下这个表达式是如何工作的? type = type || 'any'; 这是否意味着如果类型未定义则使用“任意”? 最佳答案 如果 type 为“falsy”(即 false,或 undef
我有一个界面,在IAnimal.fs中, namespace Kingdom type IAnimal = abstract member Eat : Food -> unit 以及另一个成功
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: What is the difference between (type)value and type(va
在 C# 中,default(Nullable) 之间有区别吗? (或 default(long?) )和 default(long) ? Long只是一个例子,它可以是任何其他struct类型。 最
假设我有一个案例类: case class Foo(num: Int, str: String, bool: Boolean) 现在我还有一个简单的包装器: sealed trait Wrapper[
这个问题在这里已经有了答案: Create C# delegate type with ref parameter at runtime (1 个回答) 关闭 2 年前。 为了即时创建委托(dele
我正在尝试获取图像的 dct。一开始我遇到了错误 The function/feature is not implemented (Odd-size DCT's are not implemented
我正在尝试使用 AFNetworking 的 AFPropertyListRequestOperation,但是当我尝试下载它时,出现错误 预期的内容类型{( “应用程序/x-plist” )}, 得
我在下面收到错误。我知道这段代码的意思,但我不知道界面应该是什么样子: Element implicitly has an 'any' type because index expression is
我尝试将 SignalType 从 ReactiveCocoa 扩展为自定义 ErrorType,代码如下所示 enum MyError: ErrorType { // .. cases }
我无法在任何其他问题中找到答案。假设我有一个抽象父类(super class) Abstract0,它有两个子类 Concrete1 和 Concrete1。我希望能够在 Abstract0 中定义类
我想知道为什么这个索引没有用在 RANGE 类型中,而是用在 INDEX 中: 索引: CREATE INDEX myindex ON orders(order_date); 查询: EXPLAIN
我正在使用 RxJava,现在我尝试通过提供 lambda 来订阅可观察对象: observableProvider.stringForKey(CURRENT_DELETED_ID) .sub
我已经尝试了几乎所有解决问题的方法,其中包括。为 提供类型使用app.use(express.static('public'))还有更多,但我似乎无法为此找到解决方案。 index.js : imp
以下哪个 CSS 选择器更快? input[type="submit"] { /* styles */ } 或 [type="submit"] { /* styles */ } 只是好
我不知道这个设置有什么问题,我在 IDEA 中获得了所有注释(@Controller、@Repository、@Service),它在行号左侧显示 bean,然后转到该 bean。 这是错误: 14-
我听从了建议 registering java function as a callback in C function并且可以使用“简单”类型(例如整数和字符串)进行回调,例如: jstring j
有一些 java 类,加载到 Oracle 数据库(版本 11g)和 pl/sql 函数包装器: create or replace function getDataFromJava( in_uLis
我已经从 David Walsh 的 css 动画回调中获取代码并将其修改为 TypeScript。但是,我收到一个错误,我不知道为什么: interface IBrowserPrefix { [
我是一名优秀的程序员,十分优秀!