爱运动,爱看书,爱生活!
发布时间:2013-07-28 13:15:14
1 在类中,非static成员属于类的每一个对象,static成员不一样,她独立于这个类的任意对象而存在, 每个static成员是与类关联的对象,而不是与该类的对象关联。,正因为如此,static 成员没有this 形参,.........【阅读全文】
发布时间:2013-06-09 21:20:16
#include<stdio.h> int main() { int a=1,b=2,c=2; int t; while(a<b<c){ &nb.........【阅读全文】
发布时间:2013-03-07 11:29:43
#include<iostream>#include<string>using namespace std; class person{ private: string name; int age; public: person(string n,i.........【阅读全文】