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