A sarcastic program in C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

interface 学霸
{
    string 谈笑风生();
    string 装弱();
}

interface 学渣
{
    string 谈笑风生();
    string 跪烂();
}

class 学婊: 学霸, 学渣
{
    string 学霸.谈笑风生()
    {
        return "卷子上的哪道题我没看过!";
    }

    string 学渣.谈笑风生()
    {
        return "这次考试又跪烂啦啊啊啊啊!";
    }

    public string 跪烂()
    {
        return "这次考试药丸!";
    }

    public string 装弱()
    {
        return "这次考试上不了90分啦啊啊啊!";
    }
}

namespace Interface
{
    class Program
    {
        static void Main(string[] args)
        {
            学霸 somebody = new 学婊();
            Console.WriteLine(somebody.谈笑风生());
            学渣 sameone = (学渣)somebody;
            Console.WriteLine(sameone.谈笑风生());
        }
    }
}
posted @ 2017-03-08 18:49  ch3cooh  阅读(164)  评论(0编辑  收藏  举报

Too young too simple. Sometimes naive! -- Quote from the elderly.