我该如何编写代码来展示自己

发布于 2024-12-12 16:58:24 字数 49 浏览 2 评论 0原文

如何仅使用标准 C++ 编写代码来显示自身(将代码打印到控制台)而不使用任何外部库?

How can I write a code to show itself (print code to console) using standard C++ only without any external library?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

沧笙踏歌 2024-12-19 16:58:27
#include <iostream>
#include <fstream>
#include <string>

using namespace std;

int main () {
  string line;
  ifstream sourceFile(__FILE__);
  if (sourceFile.is_open())
  {
    while ( sourceFile.good() )
    {
      getline (sourceFile,line);
      cout << line << endl;
    }
    sourceFile.close();
  }

  else cout << "Unable to open source file"; 

  return 0;
}
#include <iostream>
#include <fstream>
#include <string>

using namespace std;

int main () {
  string line;
  ifstream sourceFile(__FILE__);
  if (sourceFile.is_open())
  {
    while ( sourceFile.good() )
    {
      getline (sourceFile,line);
      cout << line << endl;
    }
    sourceFile.close();
  }

  else cout << "Unable to open source file"; 

  return 0;
}
只是一片海 2024-12-19 16:58:26

多田:http://en.wikipedia.org/wiki/Quine_(computing)

从更务实的角度来说,几乎没有人这样做过。这是毫无意义的。如果您想分发源代码,只需像理智的人一样将其放入 tarball 或 zip 文件中即可。

Tada: http://en.wikipedia.org/wiki/Quine_(computing)

On a slightly more pragmatic note, almost no one ever does this. It's pointless. If you want to distribute source code, just put it into a tarball or zip file like a sane person.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文