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
  • 相关阅读:
    最大子数组的求解(包括首尾相接成环)
    学习进度条第五周
    学习进度条第四周
    学习进度条第三周
    软件工程概论作业二
    软件工程个人作业01
    软件工程概论总结
    梦断代码阅读笔记01
    构建之法阅读笔记04
    构建之法阅读笔记03
  • 原文地址:https://www.cnblogs.com/lzx666/p/6691763.html
Copyright © 2011-2022 走看看