摘要: #include<iostream> #include<vector> using namespace std; struct A { A(int id=10):m_id(id){} void show(){ cout<< "m_id is " << m_id <<endl; } int m_id; 阅读全文
posted @ 2017-12-01 16:09 cloudren2020 阅读(460) 评论(0) 推荐(0) 编辑