初始化列表 初始化列表是指在构造函数中,我们可以提前给构造函数进行初始化。 传统的初始化: Person(int a,int b,int c){ m_a=a; m_b=b; m_c=c; } 初始化列表: Person