随笔分类 -  学习

摘要:1 #include <iostream> 2 using namespace std; 3 4 class gugu 5 { 6 public: 7 8 void tuiqian(); 9 10 private:11 12 int a;13 char b;14 15 };16 17 18 19 void gugu::tuiqian()20 {21 cout<<"***************"<<endl;22 }23 24 int main()25 { gugu tq;26 tq.tuiqian();27 28... 阅读全文
posted @ 2011-11-20 14:28 贰百舞 阅读(146) 评论(0) 推荐(0)