任何人都可以帮我理解这个功能吗?
CheckList(Listfile*& Listitems,bool showSortList)
Listfile
是一个课程,但我无法理解什么是Listfile*&
,什么会返回Listitems
?
答案 0 :(得分:3)
CheckList(Listfile*& Listitems,bool showSortList)
^^^^^^^^^ pointer to Listfile
^ reference
你应该更好地学习C ++,这可以在any decent C++ book中找到。
答案 1 :(得分:1)
它正在接受reference of pointer to Listfile
。有关此主题的详细信息,请查看此处:
http://www.codeproject.com/Articles/4894/Pointer-to-Pointer-and-Reference-to-Pointer