- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有以下代码:
Some functions:
A::A(int i_a) {cout<<"int Ctor\n";} //conversion constructor
void h(double d) {cout<<"double param\n";} //f1
void h(A a) {cout<<"A param\n";} //f2
在主函数中:
h(1);
h(1)调用的函数是f1。
我的问题是它为什么选择调用它。 1 是一个 int,因此需要隐式转换为 double。它可以很容易地将 int 转换为 A 使用上面定义的转换构造函数。为什么我没有得到错误?什么是类型转换的优先规则?
注意我已经在上面发布了我认为回答问题所必需的代码,但在下面我发布了整个代码:
#include <iostream>
using namespace std;
class B;
class A {
public:
explicit A(const B&) {cout<<"Ctor through B\n";}
A() {cout<<"Default Ctor\n";}
A(int i_a) {cout<<"int Ctor\n";}
operator int() {cout<<"A => int\n"; return 2;}
};
class B {
public:
operator A() const {cout<<"B => A\n"; A a; return a;}
};
void h(double d) {cout<<"double param\n";}
void h(A a) {cout<<"A param\n";}
void f(const A& a)
{
cout<<"f function\n";
//Without the const it will never try to convert
}
void main()
{
B b;
cout <<"-----------------\n";
f(b);
cout <<"-----------------\n";
h(1);
}
最佳答案
当执行重载决策以从所有可行的重载中选择最佳候选者时 - 编译器对每个候选者的每个参数的所有转换序列进行排序。对于获胜的函数(被选为最佳候选者),其每个参数的转换等级必须优于或等于该参数的所有其他函数的转换等级,并且至少一个转换等级必须优于所有其他转换等级函数对特定参数的转换等级。
用户定义的转换(使用构造函数或强制转换运算符)具有最差的排名之一(只有省略号具有更差的排名)。积分 float 转换具有更好的排名(排名列表见下文)。
因此,编译器更喜欢转换 int -> double(使用标准转换)而不是转换 int -> A(使用用户定义的转换),因此它选择 f1。
编辑:虽然“过载解决”在后台工作,并且大部分时间都完全符合您的预期(即大多数程序员不需要深入研究技术细节)——如果您确实想更深入(但警告过载决议的一些较暗角落被认为是编译器编写者在 C++ 编译器中完全正确的最棘手的方面之一)请参阅优秀的 C++ Templates: The Complete Guide by David Vandevoorde and Nicolai M. Josuttis它在附录 B 中提供了我读过的关于重载决议背后机制的最佳介绍之一。
这是 B.2 的摘录:
Overload resolution ranks the viablecandidate functions by comparing howeach argument of the call matches thecorresponding parameter of thecandidates. For one candidate to beconsidered better than another, thebetter candidate cannot have any ofits parameters be a worse match thanthe corresponding parameter in theother candidate....
Given this first principle, we areleft with specifying how well a givenargument matches the correspondingparameter of a viable candidate. As afirst approximation we can rank thepossible matches as follows (from bestto worst):
Perfect match. The parameter has thetype of the expression, or it has atype that is a reference to the typeof the expression (possibly with addedconst and/or volatile qualifiers).
Match with minor adjustments. Thisincludes, for example, the decay of anarray variable to a pointer to itsfirst element, or the addition ofconst to match an argument of typeint** to a parameter of type intconst* const*.
Match with promotion. Promotion is akind of implicit conversion thatincludes the conversion of smallintegral types (such as bool, char,short, and sometimes enumerations) toint, unsigned int, long or unsignedlong, and the conversion of float todouble.
Match with standard conversions only.This includes any sort of standardconversion (such as int to float) butexcludes the implicit call to aconversion operator or a convertingconstructor.
Match with user-defined conversions.This allows any kind of implicitconversion.
Match with ellipsis. An ellipsisparameter can match almost any type(but non-POD class types result inundefined behavior).
但这只是开始 - 如果您感兴趣 - 我强烈建议您先阅读本书,然后再阅读标准的相关部分 :)
关于c++ - C++中的转换优先级,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1092714/
int x = 1; System.out.println( x++ + x++ * --x ); 上面的代码打印出“5”,但我不明白怎么办?我一直为最后一个 x 取零,然后乘以仍然为 0 的第二个
我现在正在尝试使用 Preference 类 首选项 pfrOfThis = Preferences.userNodeForPackage(this) 出现错误: “类 java.util.prefs
用下面的代码 import sys print "Hello " + sys.argv[1] if len(sys.argv) > 1 else "Joe" + "." 当我运行时 python he
我的网页包含: td { padding-left:10px; } 引用的样式表包含: .rightColumn * {margin: 0; padding: 0;} 我在 rightc
使用 JPA 我有一个关于 CascadeTypes 的问题。 例如: @ManyToMany(fetch=FetchType.LAZY, cascade={CascadeType.PERSIST,
下面的“括号”是怎么写的? val words = List("foo", "bar", "baz") val phrase = "These are upper case: " + words ma
我只是想知道,对于以下代码,编译器是否单独使用关联性/优先级或其他一些逻辑来评估。 int i = 0, k = 0; i = k++; 如果我们根据关联性和优先级进行评估,postfix ++具有比
我设置了一个 Azure FrontDoor 服务,以主/备份类型的方式将流量分配给两个 API 管理服务。就像我希望所有流量都流向我的主要 APIM 服务一样,如果我碰巧关闭该服务(假装中断),那么
这是一个简单的 CSS: /* Smartphones (portrait and landscape) ----------- */ @media only screen and (min-devi
我设置了一个 Azure FrontDoor 服务,以主/备份类型的方式将流量分配给两个 API 管理服务。就像我希望所有流量都流向我的主要 APIM 服务一样,如果我碰巧关闭该服务(假装中断),那么
来自 Programming Perl pg 90,他说: @ary = (1, 3, sort 4, 2); print @ary; 排序右侧的逗号在排序之前求值,而左侧的逗号在排序之
+----+------------+------+ | id | title | lang | +----+------------+------+ | 1 | title 1 EN |
如何使用 Java 获取 DiffServe 代码点 (DSCP) 整数的优先级部分?我预计它涉及位移位,但由于某种原因,我似乎无法获得我期望的值。 最佳答案 假设我理解正确,只需向右执行 3 位逻辑
我有下一个运行良好的 js 函数: $(function () { $(".country").click(function () { var countries = Arra
int a[3]={10,20,30}; int* p = a; cout << *p++ << endl; 根据 wikipedia ,后缀++的优先级高于解引用,*p++应该先运行p++再解引用结
我想在优先读取归档后解决这种类型的表达式 2+3/5*9+3-4 这是我尝试解决该任务的代码我该如何解决这个问题 while ( !inputFile.eof() ) { getline( inp
我正在玩 Rhino 并注意到这种奇怪的行为似乎是运算符优先级: js> {}+{} NaN js> ''+{}+{} [object Object][object Object] js> ''+({
我想遍历文件列表并检查它们是否存在,如果文件不存在则给出错误并退出。我写了下面的代码: FILES=( file1.txt file2.txt file3.txt ) for file in ${FI
我正在执行级联 SELECT: SELECT * FROM x WHERE a = 1 AND b = 2 AND c = 3 => If nothing found, try: SELECT * F
即将参加考试,我正在参加之前的考试。 问题: 当两个或多个样式表规则应用于同一元素时,以下哪种类型的规则将优先? 一个。任何来自浏览器的声明 b.有用户来源的正常声明 C。作者来源正常声明 d.文档级
我是一名优秀的程序员,十分优秀!