간단한 클래스의 객체로 indexedList 클래스 템플릿의 간단한 출력 함수를 사용하려고합니다. 나는 다음과 같이 친구 함수로 클래스에서 출력 연산자를 오버로드했습니다 : 그것은 그 자체로 잘 작동템플릿 클래스 멤버 함수를 통해 객체 출력
//in header file
friend ostream& operator <<(ostream&, simpleClass&);
//in implementation file
ostream& operator <<(ostream& out, simpleClass& c1){
out << c1.stringDataMem;
return out;
}
,하지만 난 컴파일러 indexedList 클래스 템플릿을 사용하려고하면 오류를 제공합니다. 드라이버에서
//in header file
void display() const;
//in implementation file
void indexList<T, maxSize>::display() const{
for (int i = 0; i < size; i++)
cout << elements[i] << endl;
}
I 단순히에 SimpleClass indexedList의 "요소"배열에 SimpleClass 몇 객체를 추가하고, 디스플레이() 함수를 사용하려고하면, 다음은 클래스 템플릿 출력 함수이다. 이 오류 메시지는 내가받는 유일한 오류 메시지입니다.
"IndexList.cpp", line 38: Error: Formal argument 2 of type simpleClass& in call
to_operator<<(std::basic_ostream<char, std::char_traits<char>>&, simpleClass&)
requires an lvalue.
클래스 템플릿과 단순 클래스는 모두 잘 작동하지만 결합하지 않습니다. 어떤 도움이라도 대단히 감사하겠습니다! 'indexList'에 대해 잘 알고 있지만, 디스플레이()와 같은 CONST 방법, 요소 [i]를 가능성이 const를에 SimpleClass &를 반환, 따라서 당신이 당신의 전화에 CONST 규정을 삭제하려는이되지
우수합니다. 완벽하게 작동합니다. 이제는 내 컴파일러에서 상수 참조에 대해 언급하는 것에 화가 났을 것입니다 ... 감사합니다! – ghudner