摘要: // this.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include using namespace std; class A { public: A() { i = 0; } void add() { i++;} A*sp() { return this; } int Is(A*s) { return s->i; } private: i... 阅读全文
posted @ 2016-05-28 15:35 01Turing 阅读(183) 评论(0) 推荐(0) 编辑