使用构造函数的变量

Use variable of a constructor

我不是 C++ 专家,因此我会尽量把它说清楚,如果您需要任何细节,请随时问我。

我正在使用一个程序来处理 ply 文件。 我正在 MyFunction.cpp 中编写我的代码,并在我的文件中调用 AnotherFunction.cpp 中的函数,如下所示:MeshFunction(myplyfile)MeshFunction 定义在文件 AnotherFunction.cpp 中) .

假设 MeshFunction 在某个点使用元素向量,我想获取它以便在 MyFunction.cpp 中使用它;这怎么可能?

非常感谢!

您忠实的, 大号

  1. 更新 MeshFunction 的界面以接受 std::vector<Element>& elements 作为另一个参数。

  2. 确保在执行MeshFunction时填写elements必要的数据。

  3. 调用函数时提供参数。