关于类的对象作为函数的形参
有如下一段程序// Read Mesh data
if (output_flag > 1)
cout << "Reading mesh data ...\n";
Mesh ms(data.getMeshFile(),true);
int nb_dof = ms.getDim();
if (output_flag > 1)
cout << ms;
Prescription p(ms,data.getDataFile());
其中,Mesh,Prescription应该是类名,ms应该是Mesh类的对象函数,p是类Prescription的对象函数。我有两点不理解:
1、输出语句cout<<ms是什么意思?
2、对象函数名ms作为函数的参数怎么理解?
请赐教,先谢谢啦!