zoukankan      html  css  js  c++  java
  • 抽象类

    类中有抽象的方法,此类即为抽象类,抽象方法必须在子类中被重写
    using System;
    using System.Collections.Generic;
    using System.Text;

    namespace ConsoleApplication10
    {
        
    class Program
        
    {
            
    static void Main(string[] args)
            
    {
                HR a 
    = new HR();
                Sales b 
    = new Sales();
                manger c 
    = new manger();
                
    string d = Console.ReadLine();
                
    if (d == "HR")
                
    {
                    a.pay();
                    Console.ReadKey();
                }

                
    if (d == "Sales")
                
    {
                    b.pay();
                    Console.ReadKey();
                }

                
    if (d == "manger")
                
    {
                    c.pay();
                    Console.ReadKey();
                }

            }

        }

        
        
    public abstract class user
        
    {
            
            
    public abstract void pay();
           
        }

        
    public class HR:user
        
    {
            
    public override void pay()
            
    {
                Console.WriteLine(
    "4000");
            }

        }

        
    public class Sales : user
        
    {
            
    public override void pay()
            
    {
                Console.WriteLine(
    "2000") ;
            }

        }

        
    public class manger : user
        
    {
            
    public override void pay()
            
    {
                Console.WriteLine(
    "10000");
            }

        }

    }

    肩负责任,永不退缩
  • 相关阅读:
    MySQL 索引优化
    [转]多列索引
    abstract class和interface有什么区别? [转]
    PM knowledge
    委托应用场景[摘]
    Web 服务描述语言工具 (Wsdl.exe)[FROM msdn]
    C# 四个基本技巧[转]
    What are database states? [forward]
    学做程序经理[摘]
    SET IDENTITY_INSERT 学习心得[转]
  • 原文地址:https://www.cnblogs.com/ATP/p/860637.html
Copyright © 2011-2022 走看看