摘要:
cc22a_demo_c++重载自增自减操作符-代码示范 #define _CRT_SECURE_NO_WARNINGS #include <iostream> using namespace std; class String { public: String(char const *chars= 阅读全文
摘要:
cc21a重载成员操作符*,->, *,解引用操作符 ->箭头操作符,用于智能指针类 1 #include "pointer.h" //pointer.cpp 2 #include "string.h" 3 4 Pointer::Pointer() :ptr(0) {} 5 6 Pointer::P 阅读全文