我知道我可以在成员函数声明的末尾添加volatile关键字,使这个指针变为volatile,但是如何在构造函数中做呢?
class A {
void method() volatile; // inside method this is volatile pointer.
A() {;} // How to make this as volatile pointer here.
}
由于
答案 0 :(得分:3)
它不会将this
标记为易失性,因为this
指针的值对于任何给定对象都是不变的,并且在任何情况下都不会发生变化。