如何将类对象作为参数传递

时间:2015-03-19 05:10:09

标签: c++

所以我有两个类代表每个链表

class list1 {

      //some functions

};

class list2 {

      //some functions

}

我的主函数有两个对象LL1和LL2分别用于list1类和list2类。

int main()
{
     list1   LL1;
     list2   LL2;
}

现在我想调用一个函数合并,将这两个列表合并在一起。并将列表的两个对象作为参数。

让我们调用函数

void merge(object list1, object list2)  

所以我可以在主要内部调用它

merge(LL1, LL2);

可能吗?

1 个答案:

答案 0 :(得分:2)

是的,可以将对象作为参数传递。

class list {

      //some functions

};

list merge(const list& l1, const list& l2)
{
  list mergedList;
  //logic to merge l1 and l2 and copy it to mergedList
  return mergedList;
}

int main()
{
     list   LL1;
     list   LL2;

     list mergedList = merge(LL1, LL2);
}