gpt4 book ai didi

c++ - 在 C++ 中将类对象作为参数传递

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:16:18 24 4
gpt4 key购买 nike

假设我有一个名为 foo 的类,其中主要包含数据和用于显示数据的类 bar。因此,如果我有一个名为 foobar 的 foo 对象实例,我将如何将它传递给 bar::display()?类似 void bar::display(foobar &test) 的东西?

最佳答案

是的,几乎。或者,如果可能,使用 const 引用来表示该方法不会修改作为参数传递的对象。

class A;

class B
{
// ...
void some_method(const A& obj)
{
obj.do_something();
}
// ...
};

关于c++ - 在 C++ 中将类对象作为参数传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4551278/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com