我试图找到 Qt 的实现QLinkedList::operator+( const QLinkedList<T> &list )
,但我无法理解 Qt 源代码。这是 Qt 4.8.4 的一部分:
我在 .h 中找到了声明:
QLinkedList<T> operator+(const QLinkedList<T> &l) const;
但在 .cpp 中,我看到的是:
/*! \fn QLinkedList<T> QLinkedList::operator+(const QLinkedList<T> &other) const
Returns a list that contains all the items in this list followed
by all the items in the \a other list.
\sa operator+=()
*/
定义在哪里?Qt 使用什么组织?