2012年6月13日
摘要: #include "stdafx.h"#include <iostream>using namespace std;class abstractClass{public: virtual void printFS() = 0; virtual int get_value() = 0;};class inheritClass:public abstractClass{public: inheritClass():m_value(0){}; virtual void printFS();//virtual int get_value();private: int m 阅读全文
posted @ 2012-06-13 23:11 kunkka_ 阅读(604) 评论(0) 推荐(0) 编辑
摘要: Have you ever thought why there are very few great people? I think there is probably only one great person out of 10,000 at best, and most probably much less than that. But why? Most people want to be great, right? Why are there only very few of them? Here is the reason:你有没有想过为什么成功的人那么少?我想,大概在一万个人里有 阅读全文
posted @ 2012-06-13 22:37 kunkka_ 阅读(83) 评论(0) 推荐(0) 编辑