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?
The global new and delete can be used like normal, but you can also
Share
Yes, you can also scope
operatorkeyword, like::operator+(a, b).I believe
new,deleteandoperatorare the only ones in standard C++ that allow this.