摘要:在C++的类定义里面,可以看到类似下面的定义: class List { private: Node * p_head; int length; …… Public: int GetLength () const; bool GetNodeInfo(const int index,Node & bu
阅读全文
摘要:相信使用过MFC编程的朋友对CString这个类的印象应该非常深刻吧?的确,MFC中的CString类使用起来真的非常的方便好用。但是如果离开了MFC框架,还有没有这样使用起来非常方便的类呢?答案是肯定的。也许有人会说,即使不用MFC框架,也可以想办法使用MFC中的API,具体的操作方法在本文最后给
阅读全文
摘要:#include <iostream> #include <cstring> using namespace std; class Array2 { int **p; public: Array2(){}; Array2(int x,int y){ p=new int*[x]; for(int i=
阅读全文
摘要:emmm居然是在隔壁的咖啡厅里写出个大概的23333
阅读全文