摘要:
使用COleDateTime类1) 获取当前时间。 CTime time; time = CTime::GetCurrentTime();2) 获取时间元素。 int year = time.GetYear() ; int month = time.GetMonth(); int day = tim... 阅读全文
摘要:
//An example of a simple double linked list using OOP techniques#include using namespace std; struct Node{ double value; Node *N,*P; Node(double y)... 阅读全文
摘要:
//friend function example source code//role of friend function.#include using namespace std;class x{ protected: int x1; public: x(int a1):x1(a1){}... 阅读全文
摘要:
ASCII stands for American Standard Code for Information Interchange. Computers can only understand numbers, so an ASCII code is the numerical represen... 阅读全文