2023年7月10日

C++Note 空指针访问成员函数

摘要: 1 #include <iostream> 2 using namespace std; 3 4 class Person 5 { 6 public: 7 void showClassName() 8 { 9 cout << "This is Person Class" << endl; 10 } 阅读全文

posted @ 2023-07-10 18:34 廿陆 阅读(15) 评论(0) 推荐(0)

导航