首页 > 代码库 > 打印自己代码的程序
打印自己代码的程序
打印自己代码的程序
程序运行时可以打印自己源代码的程序叫叫 Quine:
具体的描述可以参见维基百科:http://en.wikipedia.org/wiki/Quine_%28computing%29
以下是几个在网上找的例子,由于手边儿有现在的 C# 环境,所以找是 C# 写的程序。
一个 C# 版的
----------------------------------------
using System; namespace Quine { class Class1 { const string a="using System; namespace Quine { class Class1 {"; const string b="[STAThread] static void Main(string[] args) { string q=Convert.ToChar(34).ToString(); System.Console.WriteLine(a);System.Console.WriteLine(s + ‘a‘ + ‘=‘ + q + a + q + ‘;‘);System.Console.WriteLine(s + ‘b‘ + ‘=‘ + q + b + q + ‘;‘); System.Console.WriteLine(s + ‘s‘ + ‘=‘ + q + s + q + ‘;‘); System.Console.Write(b); } } }"; const string s="const string "; [STAThread] static void Main(string[] args) { string q=Convert.ToChar(34).ToString(); System.Console.WriteLine(a); System.Console.WriteLine(s + ‘a‘ + ‘=‘ + q + a + q + ‘;‘); System.Console.WriteLine(s + ‘b‘ + ‘=‘ + q + b + q + ‘;‘); System.Console.WriteLine(s + ‘s‘ + ‘=‘ + q + s + q + ‘;‘); System.Console.Write(b); } } }
----------------------------------------
源自 http://blog.vyvojar.cz/radim/archive/2004/06/24/1325.aspx
另一个 C# 版的
----------------------------------------
using System; class Quine { static void Main() { string s = "using System;{4}class Quine{4}{2}{4}{5}static void Main(){4}{5}{2}{4}{5}{5}string s = {1}{0}{1};{4}{5}{5}Console.Write(string.Format(s,s,(char)34,(char)123,(char)125,(char)10,(char)9));{4}{5}{5}Console.ReadKey(true);{4}{5}{3}{4}{3}"; Console.Write(string.Format(s, s, (char)34, (char)123, (char)125, (char)10, (char)9)); Console.ReadKey(true); } }
----------------------------------------
源自 http://verydemo.com/demo_c92_i165129.html
再来一个短一点儿的
----------------------------------------
class P{static void Main(){string s="class P{{static void Main(){{string s={1}{0}{1};System.Console.WriteLine(s,s,(char)34);}}}}";System.Console.WriteLine(s,s,(char)34);}}
----------------------------------------
源自 http://www.cnblogs.com/Ninputer/archive/2006/04/04/366554.html
再写个 C 的:
----------------------------------------
#include <stdio.h> char *s = "#include <stdio.h>%cchar *s=%c%s%c;%cint main(){printf(s,10,34,s,34,10);}"; int main(){printf(s,10,34,s,34,10);}
----------------------------------------
简单的说下这种打印源代码的共同的模式,就是在格式化打印自己的时候,能把格式化本身传给它自己。
就像上面的 *s=%c%s%c,这里的 %s 接收的还是它自己。
试试来个 Lua2.4 的,这个比较短,更容易看出上面说的那个模式。
----------------------------------------
str="str=%c%s%c%cwrite(format(str,34,str,34,10))" write(format(str,34,str,34,10))
----------------------------------------
打印自己代码的程序