请问高手为什么?
1>正在删除项目“rfile”(配置“Debug|Win32”)的中间文件和输出文件
1>正在编译...
1>stdafx.cpp
1>正在编译...
1>rfile.cpp
1>f:\rfile\rfile\rfile.cpp(33) : error C2664: “CStdioFile::CStdioFile(FILE *)”: 不能将参数1 从“const wchar_t [11]”转换为“FILE *”
1>      与指向的类型无关;转换要求reinterpret_cast、C 样式转换或函数样式转换
  // rfile.cpp : 定义控制台应用程序的入口点。
//#include "stdafx.h"
#include "rfile.h"#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// 唯一的应用程序对象CWinApp theApp;using namespace std;int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
int nRetCode = 0; // 初始化MFC 并在失败时显示错误
if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0))
{
// TODO: 更改错误代码以符合您的需要
_tprintf(_T("错误: MFC 初始化失败\n"));
nRetCode = 1;
}
else
{
// TODO: 在此处为应用程序的行为编写代码。
cout << "hello";
CStdioFile myfile("testa.txt);
CString str;
} return nRetCode;
}