我這行獲得文件大小聲明大小爲STD數組:: streamoff
std::streamoff _responseLength = _responseIn.tellg();
我與一個wchar_t的指針分配內存,
wchar_t* _responseString = new wchar_t[_responseLength];
我得到一個警告約'initializing' : conversion from 'std::streamoff' to 'unsigned int', possible loss of data
。
我應該怎麼做才能徹底消除編譯器的警告?