[C#版本]有趣啊!各類編程語言實現 2 + 2 = 5

首頁新聞裏面那個編程

[新聞頭條]有趣啊!各類編程語言實現 2 + 2 = 5編程語言

其餘的就不評論的,可是其中C#版的 真是逗比啊...評論中各類吐槽有木有...ide

static void Main (string[] args)
{
    var x = 2;
    var y = 2;

    if (1 == 0) ;
    {
        ++x;
    }

    Console.WriteLine (x + y);
}

 

因此我閒來無聊 ~~ 也來實現一個....spa

static void Main(string[] args)
{
    using (var p = new CSharpCodeProvider())
    {
        Console.SetOut((TextWriter)p.CompileAssemblyFromSource(new CompilerParameters() { GenerateExecutable = false, GenerateInMemory = true, IncludeDebugInformation = false }, "using System.IO;using System.Text;class a:TextWriter{TextWriter _;public a(TextWriter w){_=w;}public override void Write(char v){_.Write(v=='4'?'5':v);} public override Encoding Encoding{get{return _.Encoding;}}}").CompiledAssembly.GetTypes()[0].GetConstructor(new[] { typeof(TextWriter) }).Invoke(new object[] { Console.Out }));
    }

    Console.WriteLine("{0}+{1}={2}", 2, 2, 2 + 2);
}

 

解釋下code

就是重定義了輸出到控制檯的TextWrite對象 讓4變成5  也沒什麼意義orm

老是比新聞那個版本高級一點的...呵呵~~對象

相關文章
相關標籤/搜索