摘要: 1 #include "stdafx.h" 2 3 class A 4 { 5 public: 6 A(){m_a = 1; m_b = 2;} 7 void fun(){printf("%d %d\n", m_a, m_b);} 8 private: 9 int m_a... 阅读全文
posted @ 2015-04-18 00:50 kira2will 阅读(421) 评论(0) 推荐(0) 编辑