我是在LinkedMatrix的operator<<中呼叫SortedSinglyList的operator<<,確定錯誤在標示的那一行。這個錯誤跟const 有關?可我這裡面寫的程式碼都不含const 的啊
我在SSL中運行operator<<正確了,但LM卻失敗了
class LinkedMatrix-------
friend ostream& operator<<<>(ostream& os, LinkedMatrix &a)
{
for (int i = 0; i < a.rows; i++)
cout << "i" << (*a.rowlist[i]); //括号相当于SSL对象。调用SSL.operator<<
}
#
operator你的這個是什麼?