是否还有其他可以使用全局命名空间范围解析运算符访问的关键字?
全局的new和delete可以像平常一样使用,但你也可以在它们前面加上::运算符,它的工作原理是一样的。 还有其他关键字具有相同的行为吗?
The global new and delete can be used like normal, but you can also prefix the :: operator to them and it will work the same.
Are there any other keywords that have this same behaviour?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您还可以设置
operator
关键字的范围,例如::operator+(a, b)
。我相信
new
、delete
和operator
是标准 C++ 中唯一允许这样做的。Yes, you can also scope
operator
keyword, like::operator+(a, b)
.I believe
new
,delete
andoperator
are the only ones in standard C++ that allow this.