- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
#include <iostream>
struct A{
A() = default;
A(volatile const A&){}
void show()const volatile {
}
};
int main(){
volatile A a;
//A b = std::move(a); // ill-formed
std::move(a).show(); //OK
}
考虑
example ,示例的结果超出了我对一些相关规则的理解。
A b = std::move(a);
,它的格式不正确,因为它违反了以下规则,即:
Otherwise, if the reference is an lvalue reference to a type that is not const-qualified or is volatile-qualified, the program is ill-formed.
A b = std::move(a);
显然违反了这条规则,因此它的格式不正确。
std::move(a).show();
不报错。根据这个规则:
For non-static member functions, the type of the implicit object parameter is
“lvalue reference to cv X” for functions declared without a ref-qualifier or with the & ref-qualifier
成员函数隐含对象参数的类型show
将是volatile const A&
.一般来说,它肯定违反了 [dcl.init.ref#5.2]。如果改变成员函数的定义show
到:
void show() volatile const& {
}std::move(a).show();
将是畸形的。所以在下面的规则中一定有一些魔法使std::move(a).show();
修改前编译show
.规则是:
over.match.funcs#general-5
For non-static member functions declared without a ref-qualifier, an additional rule applies:
even if the implicit object parameter is not const-qualified, an rvalue can be bound to the parameter as long as in all other respects the argument can be converted to the type of the implicit object parameter.
老实说,我真的不知道“在所有其他方面”这个词是什么意思?而“隐式对象参数的类型”指的是什么? “类型”是否指volatile const A&
或引用类型volatile const A
?措辞非常模糊。总之, 对 const volatile T 的左值引用无法绑定(bind)到任何 右值 类型T
.那么,如何解读呢?
作为对比:
#include <iostream>
struct B{
void show(){}
};
int main(){
volatile B b;
std::move(b).show(); //ill-formed
}show
的隐式对象参数的类型将是B&
, 根据 [over.match.funcs#general-5],即使忽略const-qualifier
,由于它丢弃了volatile-qualifier
,它仍然是不正确的。 .从这个例子中可以看出,对于这句话“在所有其他方面,参数都可以转换为隐式对象参数的类型”,其中类型应引用 。引用类型 而不是引用所指的类型。如果魔法是这样的,仍然不足以使std::move(a).show();
形成良好的。
那么,如何解读这些问题呢?我不知道如何使用 [over.match.funcs#general-5] 来解释这两个示例。
最佳答案
struct A {
A() = default;
A(volatile const A &) {}
void show() const volatile {}
};
int main() {
volatile A a;
std::move(a).show(); // OK
}
show()
是,根据
[over.match.funcs]/4 ,
const volatile A&
,因此为了解决重载问题,我们可以根据
[over.match.funcs]/5 ,将数据成员函数视为
void show(const volatile A&);
现在,考虑到这一点,让我们首先简化示例,目的是:
A
的右值引用的原因似乎可以绑定(bind)到隐含的对象参数或类型const volatile A&
但当参数用于常规自由函数时,更不用说相同类型的函数参数。 #include <memory>
struct A {
void show() const volatile {}
};
void g(const volatile A &) { }
int main() {
volatile A a;
g(std::move(a)); // (i) Error.
std::move(a).show(); // (ii) OK.
}
GCC (10.1.0) 中 (i) 处的错误消息是:
error: cannot bind non-const lvalue reference of type
const volatile A&
to an rvalue of typestd::remove_reference<volatile A&>::type
{akavolatile A
}
volatile
引用,即使它们是
const
-合格的。
[over.match.funcs]/5 [...] For non-static member functions declared without a ref-qualifier, an additional rule applies:
- /5.1 even if the implicit object parameter is not const-qualified, an rvalue can be bound to the parameter as long as in all other respects the argument can be converted to the type of the implicit object parameter.
volatile A
)是否可以是 ("在所有其他方面") 转换为隐式对象参数 (
const volatile A&
)。作为隐式对象参数,如上所示,在这种情况下始终是左值引用,“在所有其他方面”这里本质上意味着隐式对象参数是引用兼容的(根据
[dcl.init.ref]/4 )与(忽略右值)参数类型。
// [over.match.funcs ]/5.1 special case: rvalue prohibition waived
volatile A a; // argument: a
const volatile A& aref = a; // ok, reference-compatible
// ^^^^^^^^^^^^^^^^^ implicit object parameter
可以说 [over.match.funcs]/5.1 可能更清楚,它适用于非
const
的情况。限定(通常)禁止从右值绑定(bind),并且
volatile
-cv-qualification (通常)禁止从右值绑定(bind)。
&
来查询编译器这是否实际上是它用于允许 (ii) 的特定规则。 -ref-qualifier,根据
[over.match.funcs]/4.1 进行的更改对隐式对象参数的类型没有影响:
#include <memory>
struct A {
void show() const volatile & {}
};
void g(const volatile A &) { }
int main() {
volatile A a;
g(std::move(a)); // (i) Error.
std::move(a).show(); // (ii') Error.
}
正如所料,如果我们添加
&
-
show()
的限定符过载,(ii)同样失败(i),尽管有另一个错误消息(GCC):
error: passing
std::remove_reference<volatile A&>::type
{akavolatile A
} asthis
argument discards qualifiers
error:
this
argument to member functionshow
is an rvalue, but function has non-const lvalue ref-qualifier
关于c++ - 关于由 volatile 限定符限定的成员函数的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64785336/
test = (function(){var key = 200; return {getKey : function(){return key} }; })(); test.
如果这个问题可能一直被问到,我很抱歉,但我进行了搜索,但找不到足够的答案。 如果公共(public)成员/方法正在访问私有(private)成员/字段,如何禁用它们的继承? 所以考虑一下: publi
重要的澄清:一些评论者似乎认为我是从 union 复制的。仔细查看 memcpy,它从一个普通的旧 uint32_t 地址复制而来,该地址不包含在 union 中。另外,我正在(通过 memcpy)复
spinner 通常只显示一个字符串,在我想分配 IDpersonne 和 Name 的情况下,旋转器必须告诉我名字。当我得到选定的项目时,我必须得到 ID。我该怎么做? 最佳答案 我假设您已将项目排
A 类的实例是 B 类的公共(public)成员。B 类的实例也是 A 的公共(public)成员。在什么情况下可能需要这种实现?我的意思是是否有一个或多个标准场景需要这种实现方式?更具体的细节:我有
我如何设置我的 web.config 以使用表单例份验证,将成员身份提供程序设置为 ActiveDirectoryMembershipProvider 并使用内置登录控件。这样我就可以使用有效的事件目
这个问题已经有答案了: Should methods in a Java interface be declared with or without a public access modifier?
因此根据定义,类中的私有(private)数字在序列化时以类名作为前缀。这对我来说是一个问题,我希望能够序列化/保存/反序列化一个确切的对象,但是 php 所做的是给我另一个 classname+va
我实现了一个成员? clojure 中的函数如下: (defn member? [item seq] (cond (empty? seq) false (= item (first
我在这里的问题似乎总是与使用函数有关。它仍然让我困惑!在本教科书练习中,我被要求按值传递结构,然后调整它并按引用传递。最初我设计的代码是在 main 中完成所有工作。现在我正在传递值。所以我添加了新函
所以我有这些变量 List files, images = new List(); string rootStr; 还有这个线程函数 private static int[] thread_searc
我对 C++ 模板和尝试弄清楚部分模板特化还比较陌生。我正在使用模板实现几个相关的数据结构:用于概率存在/不存在查询的布隆过滤器(基于位数组),以及用于丰度查询的计数布隆过滤器(带有整数数组)。我从以
例如在 java 中,我在外部类和内部类中声明并初始化了一个 JButton,我决定在某些情况下将其隐藏,这是一种安全的编程实践吗? 最佳答案 内部类的全部目的是它们可以访问到环绕内部类的外部类。 所
我有一个使用库进行通信的类: class Topic { Topic( Type T, String name ); }; class Reader { Reader (Topic, Stri
我在两个单独的文件中有以下代码。 package animal; public class Frog { protected void ribbit() { Syste
我有一个分数列表。使用这些,我需要从 redis 排序集中提取值。 我知道我可以使用 zrangebyscore - 但如果我提供的列表中的分数不连续怎么办?在这种情况下,我不能依赖 zrangeby
过去几年我一直被 C# 编码宠坏了,现在我又回到了 C++ 并发现我在处理本应很简单的东西时遇到了麻烦。我正在为 gamedev 使用名为 DarkGDK 的第三方库(任何以 db 为前缀的命令),但
我正在关注 Brian Harvey 从 2011 年开始在 UC Berkeley site 上的 SICP 讲座。 .他正在使用 STk interpreter教这门课,我正在使用带有 DrRac
在这段代码中,为什么在运算符重载中无法访问我的类的私有(private)字段? (请注意,这只是一个 MRE,不是完整代码) template class Frac template Frac o
在命名命名空间类中,我将一个类(位于全局命名空间中)声明为友元。 但是,后一个类不能访问前一个类的私有(private)成员。为什么是这样?有什么办法可以解决吗? Bob.h namespace AB
我是一名优秀的程序员,十分优秀!