- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
#include <iostream>
using namespace std;
void func(int (&ref)[6]) { cout << "#1" << endl; }
void func(int * &&ref) { cout << "#2" << endl; }
int main()
{
int arr[6];
func(arr); // g++(5.4): ambiguous, clang++(3.8): #2, vc++(19.11): #1
return 0;
}
这两个函数都是完全匹配的。以下是标准的引用:
Standard conversion sequence S1 is a better conversion sequence than standard conversion sequence S2 if
...
S1 and S2 are reference bindings (8.5.3) and neither refers to an implicit object parameter of a non-static member function declared without a ref-qualifier, and S1 binds an rvalue reference to an rvalue and S2 binds an lvalue reference.
不是说第二个更好吗?
更新:
There是一个相关的问题。而下面的代码就是它的简化版。
#include <iostream>
using namespace std;
void func(int *&) { cout << "#1" << endl; }
void func(int *&&) { cout << "#2" << endl; }
int main()
{
int arr[6];
func(arr); // g++(5.4) and clang++(3.8): #2, vc++(19.11): ambiguous
return 0;
}
最佳答案
我认为这取决于特定短语的含义。
两种转换是等价的,因为我们排除了 lvalue transformations (基本上,数组实际上是一个指针,因此它不算作转换),所以我们进入您在 [over.ics.rank] 中指出的下一个决胜局。 :
S1 and S2 are reference bindings and neither refers to an implicit object parameter of a non-static member function declared without a ref-qualifier, and S1 binds an rvalue reference to an rvalue and S2 binds an lvalue reference
这种情况适用吗?我们确实有两个引用绑定(bind):
int arr[6];
int (&a)[6] = arr; // #1
int *&& b = arr; // #2
这里,#1 绑定(bind)一个左值引用。 #2 属于 [dcl.init.ref] :
Otherwise, the initializer expression is implicitly converted to a prvalue of type “cv1 T1”. The temporary materialization conversion is applied and the reference is bound to the result.
arr
被隐式转换为 int*
类型的纯右值,然后绑定(bind)到 b
。
所以现在的问题是 - [over.ics.rank] 中的限制是什么意思?这可能意味着:
arr
的右值转换的临时物化。 arr
不是右值(它是左值),因此会跳过此决胜局并且不会应用后续的决胜局。我倾向于在这里实现 gcc。否则,“将右值引用绑定(bind)到右值”这句话的意义是什么?右值引用不能绑定(bind)到左值。这是多余的。也就是说,对于这种解释,它的措辞也很尴尬。
照原样,我将其称为措辞错误。
关于c++ - 左值引用和右值引用之间的重载决议,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46116173/
tl;dr:我编写的函数创建了多个子进程,这些子进程在提交消息中的数据时解决 promise 。尽管该函数将所有这些 Promise 包装在 Promise.All 中,但该函数将突然返回,并且 Pr
我目前正在阅读 Jon Skeet 的 C# in depth 第 2 版,我想到了以下问题: 编译器如何能够在 list.Sort(Comparison) 之间进行选择?和 list.Sort(My
我是一名优秀的程序员,十分优秀!