프로그래밍/WIN32 API

ostream 에 __int64 관련 연산자 미선언 오류

Subi Lee 2010. 8. 9.
반응형


http://support.microsoft.com/kb/168440


Article ID: 168440 - Last Review: May 26, 2005 - Revision: 3.0

You may receive an "error C2593: 'operator <<' is ambiguous" error message when you try to pass an __int64 variable to the ostream operator <<

This article was previously published under Q168440

SYMPTOMS

If you try to pass an __int64 variable to the ostream operator <<, you get the following error:
error C2593: 'operator <<' is ambiguous

CAUSE

There is no operator << for __int64 type defined for the ostream class.

RESOLUTION

Define your own version of operator <<. The following sample code section shows a simple solution for << operator that converts the __int64 variable to a char * type and passes it to the ostream << operator.

STATUS

Microsoft has confirmed that this is a bug in the Microsoft products that are listed in the "Applies to" section.

This problem was corrected in Microsoft Visual C++ .NET.

MORE INFORMATION

The following sample program demonstrates the problem and workaround:
//Sample.cpp
// Compiler Options : /GX

//#define WORKAROUND   //Uncomment this line to workaround

#include<iostream>
using namespace std;

#ifdef WORKAROUND
std::ostream& operator<<(std::ostream& os, __int64 i )
{
    char buf[20];
    sprintf(buf,"%I64d", i );
    os << buf;
    return os;
}

#endif

int main(){
__int64  i64;

cout << i64 ;

return 0;
}
				

반응형

댓글