摘要:
先来看看链表的实现: MyList.hpp 代码:#ifndef __MYLIST__#define __MYLIST__#include using namespace std;templatestruct _Node{ _Node() { memset(&data, 0, sizeof(Ty... 阅读全文
摘要:
// OperatorRewrite1.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include using namespace std;enum style_enum{ zero, one, two, three };class CFraction{pri... 阅读全文
摘要:
std::cout<< var ,这个是如何识别变量的呢?主要用到函数 typeid();参考【typeid详解】http://www.cppblog.com/smagle/archive/2010/05/14/115286.html; 阅读全文