zoukankan      html  css  js  c++  java
  • 第六章,上机1

     1 using System;
     2 using System.Collections.Generic;
     3 using System.Linq;
     4 using System.Text;
     5 using System.Threading.Tasks;
     6 
     7 namespace Shang_1
     8 {
     9     public class Truck:Vehicle
    10     {
    11         public Truck(string type,string place):base(type,place){}
    12         public void TruckRun()
    13         {
    14             Console.WriteLine("型号为{0}、产地为{1}的卡车在行驶!",this.Type,this.Place);
    15         }
    16     }
    17 }
    Truck类
     1 using System;
     2 using System.Collections.Generic;
     3 using System.Linq;
     4 using System.Text;
     5 using System.Threading.Tasks;
     6 
     7 namespace Shang_1
     8 {
     9     public class Vehicle
    10     {
    11         public string Type { get; set; }
    12         public string Place { get; set; }
    13         public Vehicle(string type, string place)
    14         {
    15             this.Type = type;
    16             this.Place = place;
    17         }
    18         public void VehicleRun()
    19         {
    20             Console.WriteLine("汽车在行驶!");
    21         }
    22     }
    23 }
    Vehicle
     1 using System;
     2 using System.Collections.Generic;
     3 using System.Linq;
     4 using System.Text;
     5 using System.Threading.Tasks;
     6 
     7 namespace Shang_1
     8 {
     9     class Program
    10     {
    11         static void Main(string[] args)
    12         {
    13             Truck truck = new Truck("奥迪A6","德国");
    14             truck.VehicleRun();
    15             truck.TruckRun();
    16         }
    17     }
    18 }
    Main
  • 相关阅读:
    SVN 使用锁实现独占式签出
    浏览器console中加入jquery方便调试
    nuget安装说明
    sql server 索引优化
    Windwos Server 2016 远程桌面授权
    tomcat的安装与配置
    业务监控
    敏捷话管理团队
    一键搞定多服务器的更新
    迁移历史sql数据
  • 原文地址:https://www.cnblogs.com/lzx666/p/6691763.html
Copyright © 2011-2022 走看看