누군가 내가 잘못하고있는 것을 설명 할 수 있습니까? 이것은 컴파일러에서 얻은 오류입니다.NonTemplate 함수 템플릿 클래스의 친구
많은 감사
1>------ Build started: Project: Ch16, Configuration: Release Win32 ------
1> p643_inclusion.cpp
1> p643_inclusion_main.cpp
1> p643_print.cpp
1>p643_print.cpp(5): error C2065: 'T1' : undeclared identifier
1>p643_print.cpp(5): error C2065: 'T2' : undeclared identifier
1>p643_print.cpp(6): warning C4552: '<<' : operator has no effect; expected operator with side-effect
1>p643_print.cpp(7): warning C4552: '<<' : operator has no effect; expected operator with side-effect
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
p643_inclusion.h
#ifndef P643H
#define P643H
template< class T1, class T2> class Car {
friend void print (const Car<T1, T2> &c1);
private:
T1 Wheels;
T2 DriversName;
public:
Car(): Wheels(4), DriversName("None") {}
Car(T1, T2);
};
template <class T1, class T2> class Driver {
private:
T1 Name;
T2 Surname;
public:
Driver(): Name("None"), Surname("None") {}
};
#include "p643_inclusion.cpp"
#endif
p643_inclusion.cpp
# ifndef P643CC
#define P643CC
#include <iostream>
#include <string>
using std::string;
using std::cout;
using std::endl;
#include "p643_inclusion.h"
template<class T1, class T2>
Car<T1, T2>::Car(T1 w, T2 d) {
Wheels = w;
DriversName = d;
}
#endif
p643_print.cpp
#include "p643_inclusion.h"
template< class T1, class T2> class Car;
void print (const Car<T1, T2> &c1) {
cout << c1.Wheels << endl;
cout << c1.DriversName << endl;
}
,451,515,
주요
#include "p643_inclusion.h"
#include<iostream>
#include<string>
using namespace std;
int main()
{
Car<int, string> myCar;
Driver<string, string> myDriver;
print(myCar);
return 0;
}
파일을 포함 대답 볼 * 수 p643_inclusion.cpp를 포함시킨 것과 똑같이 * p643_inclusion.h *에있는 p643_print.cpp *를 사용하십시오. – Nawaz