【发布时间】:2014-10-13 07:37:10
【问题描述】:
谁能帮我理解这个功能?
CheckList(Listfile*& Listitems,bool showSortList)
Listfile 是一个类,但我不明白Listfile*& 是什么,Listitems 会返回什么?
【问题讨论】:
标签: c++
谁能帮我理解这个功能?
CheckList(Listfile*& Listitems,bool showSortList)
Listfile 是一个类,但我不明白Listfile*& 是什么,Listitems 会返回什么?
【问题讨论】:
标签: c++
CheckList(Listfile*& Listitems,bool showSortList)
^^^^^^^^^ pointer to Listfile
^ reference
你应该更好地学习C++,这可以在any decent C++ book找到。
【讨论】:
它正在占用reference of pointer to Listfile。在此处查看此主题的详细信息:
http://www.codeproject.com/Articles/4894/Pointer-to-Pointer-and-Reference-to-Pointer
【讨论】: