摘要: A pointer to a C++ class is done exactly the same way as a pointer to a structure and to access members of a pointer to a class you use the member acc 阅读全文
posted @ 2019-05-16 11:17 Poission 阅读(152) 评论(0) 推荐(0) 编辑
摘要: Every object in C++ has access to its own address through an important pointer called this pointer. The this pointer is an implicit parameter to all m 阅读全文
posted @ 2019-05-16 11:02 Poission 阅读(104) 评论(0) 推荐(0) 编辑
摘要: Function Overloading in C++ You can have multiple definitions for the same function name in the same scope. The definition of the function must differ 阅读全文
posted @ 2019-05-16 10:51 Poission 阅读(221) 评论(0) 推荐(0) 编辑
摘要: Base and Derived Classes A class can be derived from more than one classes, which means it can inherit data and functions from multiple base classes. 阅读全文
posted @ 2019-05-16 10:00 Poission 阅读(207) 评论(0) 推荐(0) 编辑