让C++程序打印自身源码

本人原创文章,欢迎阅读,禁止转载。

这绝对是惊艳到让你眼前一亮(为了简洁,故意没考虑资源问题和编译警告)。

 #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;
}

本人原创文章,欢迎阅读,禁止转载。

上一篇:visual studio 引用lib


下一篇:Android AlertDialog更改标题颜色,字体等