C++语言中,主函数如何调用类函数里的数据成员

2024-11-29 12:44:13
推荐回答(1个)
回答1:

int main()
{
Student stu(xx, xx); // 定义对象时就会调用构造函数
stu.XXX(); // 这样就能调用 public 的成员函数。
}