作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
scoped_refptr<any_class> a_scoped_refptr;
const scoped_refptr<any_class> something = a_scoped_refptr; // Compile error.
如果是const我们就不能修改ref_counter了,但是我想暗示指针指向的内容不应该改变,怎么办?
最佳答案
两件事:
首先,您没有提到编译器错误,但我猜这是一个简单的语法错误,因为您没有为 scoped_refptr
指定变量名。
其次,如果您想要一个指向 const 对象的指针,请将其指定为指针类型。所以尝试:
scoped_refptr<any_class const> myPointer = a_scoped_refptr;
关于c++ - 定义 const scope_refptr() 有意义吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11656764/
scoped_refptr a_scoped_refptr; const scoped_refptr something = a_scoped_refptr; // Compile error. 如果
我是一名优秀的程序员,十分优秀!