// TestShlwAPI.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include <iostream>
using std::wcout;
using std::endl;
#include <string>
using std::wstring;
#include <fstream>
using std::wifstream;
int _tmain(int argc, _TCHAR* argv[])
{
//main.cpp:
//读我自己
wifstream fin("TestShlwAPI.cpp");
wstring str;
wchar_t wcharArr[1024];
while (!fin.eof())
{
/*fin >> str;
wcout << str << endl;*/
fin.getline(wcharArr,1024);
wcout << wcharArr << endl;
}
while (!fin.eof())
{
fin >> wcharArr;
wcout << wcharArr << endl;
}
fin.seekg(-1);//设置读的位置影响fin.rdbuf(),不影响fin.eof()
if (!fin.bad())
{
// Dump the contents of the file to cout.
wcout << fin.rdbuf();
fin.close();
}
fin.close();
system("pause");
return 0;
}