C#创建一个收费接口Charge,其中有一个方法charge();创建另一个接口Play,其中有一个方法play()。 (1)声明类Bus来实现接口Charge,对于Bus中的charge(

该代码示例定义了Charge接口用于充电或支付费用,以及Play接口用于播放。Bus和Taxi类实现了Charge接口,分别表示公交和出租车的收费方式,而Ciema类同时实现了Charge和Play接口,表示电影院的收费和播放电影功能。在Main方法中,展示了如何实例化这些类并调用相关方法。
摘要由CSDN通过智能技术生成

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

namespace ConsoleApp17
{
    public interface Charge   
    {
        void charge();        
    }
    public interface Play   
    {
        void play();      
    }
    public class Bus : Charge    
    {
        public void charge()      
        {
            Console.WriteLine("公共汽车:1元/张,不计公里数");
        }

    }
    public class Taxi : Charge    
    {
        public void charge()   
        {
            Console.WriteLine("\n出租车:1.6元/公里,起价5元3公里");
        }

    }
    public class Ciema : Charge, Play   

    {
        public void charge()     
        {
            Console.WriteLine("\n电影院:30元/张,凭学生证享受半价");
        }
        void Play.play()     

        {
            Console.WriteLine("\n正在放映电影");
        }
    }

    class Program
    {
        static void Main(string[] args)
        {
            Bus bus = new Bus();  
            bus.charge();
            Taxi taxi = new Taxi();
            taxi.charge();
            Ciema ciama = new Ciema();
            ciama.charge();
            Play p = (Play)ciama;    
            p.play();
            Console.ReadLine();
        }
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

LC16

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值