template 질문입니다.
글쓴이: nayana / 작성시간: 수, 2004/05/12 - 10:58오전
//tminmax3.h
template< typename T > T max( T a, T b )
{
return ( a > b ) ? a : b;
}
template< typename T > T min( T a, T b )
{
return ( a < b ) ? a : b;
}
//tfunc3.cpp
#include <iostream>
#include "tminmax3.h"
using namespace std;
double mid( double, double );
int main ( void )
{
cout << "최소값: " << min( 123, 456 ) << endl;
cout << "최대값: " << max( 123, 456 ) << endl;
cout << "중간값: " << mid( 123, 456 ) << endl;
return 0;
}
//mid.cpp
#include "tminmax3.h"
double mid( double a, double b )
{
return ( min( a, b ) + max( a, b ) ) / 2.;
}
컴파일을 해보면...다음과 같은 에러가 납니다.
tminmax3.h:7: candidates are: T min(T, T) [with T = int] /usr/include/c++/3.2.2/bits/stl_algobase.h:149: const _Tp& std::min(const _Tp&, const _Tp&) [with _Tp = int] tfunc3.cpp:11: call of overloaded `max(int, int)' is ambiguous tminmax3.h:2: candidates are: T max(T, T) [with T = int] /usr/include/c++/3.2.2/bits/stl_algobase.h:169: const _Tp& std::max(const _Tp&, const _Tp&) [with _Tp = int]
모호하다고 나오는데...왜그러죠
Forums:


std 라는 네임스페이스 안에 min, max라는 템플릿이 이미 있기
using namespace std; 이넘이 문제입니다.
nayana님이 정의하신 min, max 함수를 다른 네임스페이스에 정의 하던지 std라는 네임스페이스를 사용하지 않아야 합니다.
using namespace std; 라고 쓰는건 네임스페이스를 두번 죽이는 거라면서 가능하면 네임스페이스를 명시적으로 사용하라고 하는 내용을 어디선가 본 기억이 어렴풋이 나네요 ^^
#include <iostream> template< typename T > T max( T a, T b ) { return ( a > b ) ? a : b; } template< typename T > T min( T a, T b ) { return ( a < b ) ? a : b; } double mid( double a, double b ) { return ( min( a, b ) + max( a, b ) ) / 2.; } //using namespace std; double mid( double, double ); int main ( void ) { std::cout << "최소값: " << min( 123, 456 ) << std::endl; std::cout << "최대값: " << max( 123, 456 ) << std::endl; std::cout << "중간값: " << mid( 123, 456 ) << std::endl; return 0; }답변 감사합니다.namespace 가 이런 단점이 있었군요^^;주
답변 감사합니다.
namespace 가 이런 단점이 있었군요^^;
주의해서 써야겠습니다.
댓글 달기