本人原创文章,欢迎阅读,禁止转载。
这绝对是惊艳到让你眼前一亮(为了简洁,故意没考虑资源问题和编译警告)。
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main(int argc,char* argv[])
{
cout<<string((istreambuf_iterator<char>(ifstream(__FILE__))),istreambuf_iterator<char>())<<endl;
}
本人原创文章,欢迎阅读,禁止转载。