캐스트 연산자:)
형식 변환을 명시적 변환은 특정 상황에서 개체의 형식에 대 한 메서드를 제공합니다.
unary-expression
( type-name ) cast-expression
설명
모든 단항 식 하는 캐스트 식으로 간주 됩니다.
컴파일러 처리 cast 식 형식 형식 이름 형식 캐스팅을 수행한 후.캐스트를 사용 하 여 다른 스칼라 형식에서 모든 스칼라 형식의 개체를 변환할 수 있습니다.명시적 형식 캐스트 암시적 변환의 결과 확인 합니다. 같은 규칙으로 제한 됩니다.캐스트에 추가로 제한을 실제 크기 또는 특정 종류의 표현에서 발생할 수 있습니다.
예제
// expre_CastOperator.cpp
// compile with: /EHsc
// Demonstrate cast operator
#include <iostream>
using namespace std;
int main()
{
double x = 3.1;
int i;
cout << "x = " << x << endl;
i = (int)x; // assign i the integer part of x
cout << "i = " << i << endl;
}
// expre_CastOperator2.cpp
// The following sample shows how to define and use a cast operator.
#include <string.h>
#include <stdio.h>
class CountedAnsiString
{
public:
// Assume source is not null terminated
CountedAnsiString(const char *pStr, size_t nSize) :
m_nSize(nSize)
{
m_pStr = new char[sizeOfBuffer];
strncpy_s(m_pStr, sizeOfBuffer, pStr, m_nSize);
memset(&m_pStr[m_nSize], '!', 9); // for demonstration purposes.
}
// Various string-like methods...
const char *GetRawBytes() const
{
return(m_pStr);
}
//
// operator to cast to a const char *
//
operator const char *()
{
m_pStr[m_nSize] = '\0';
return(m_pStr);
}
enum
{
sizeOfBuffer = 20
} size;
private:
char *m_pStr;
const size_t m_nSize;
};
int main()
{
const char *kStr = "Excitinggg";
CountedAnsiString myStr(kStr, 8);
const char *pRaw = myStr.GetRawBytes();
printf_s("RawBytes truncated to 10 chars: %.10s\n", pRaw);
const char *pCast = myStr; // or (const char *)myStr;
printf_s("Casted Bytes: %s\n", pCast);
puts("Note that the cast changed the raw internal string");
printf_s("Raw Bytes after cast: %s\n", pRaw);
}