为什么C指针中的“this”指针不是引用?

前端之家收集整理的这篇文章主要介绍了为什么C指针中的“this”指针不是引用?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
为什么这个指针在C中是一个指针而不是引用?

有没有使用我错过的使用“this”作为一个比引用更有用的指针?

如果不是,有没有任何语言设计的含义/考虑作为一个指针?

解决方法

Bjarne Stroustrup’s C++ Style and Technique FAQ

Why is “this” not a reference?

Because “this” was introduced into C++ (really into C with Classes) before references were added. Also,I chose “this” to follow Simula usage,rather than the (later) Smalltalk use of “self”.

原文链接:https://www.f2er.com/c/115528.html

猜你在找的C&C++相关文章