C# 1120抽象类 static




抽象类

csharp 复制代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace C_Up
{
    public abstract class People
    {
        public abstract int age
        {
            get; set;
        }
        public abstract void work();
    }

    public class Student : People
    {
        private int studentId;
        private string studentName;
        private int _age;
        public override int age
        {
            get
            {
                return _age;
            }
            set
            {
                _age = value;
            }
        }
        public Student(int id,string name)
        {
            studentId = id;
            studentName = name;
        }
        public override void work()
        {
            Console.WriteLine("编号:"+studentId+",姓名:"+studentName+",年龄:"+age+"ok");
        }

    
    
    } 

}
csharp 复制代码
namespace C_Up
{
    internal class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello, World!");
            Course course = new Course();
            Course yuwen;//空指针
            course.CourseId = 2;
            // yuwen.CourseName = string;
            course.CourseName = "math";
            course.ShowCourse();

            Course cs
                =new Course();
            cs.CourseId = 3;
            cs.CourseName = "computer science";
            cs.ShowCourse();

            Student student=new Student(22,"xiaoli");
            student.age = 23;
            student.work();
        }
    }
}

总结

不能再抽象类外部声明抽象方法

static

静态属性、方法

csharp 复制代码
  Student student=new Student(22,"xiaoli");
  student.age = 23;
  student.work();
  //静态对象不能使用类的对象来访问 类名.属性名访问
  Game game=new Game();
  Game.T_GameCount = 1;
  Game.gameType = "Moba";
     game.AddGame();
csharp 复制代码
   public class Game
   {
       public static string gameType;
       public static int T_GameCount {  get; set; }
       public void AddGame()
       {
           Game.T_GameCount+=1;
       }
   }
csharp 复制代码
  public class Game
  {
      public static string gameType;
      public static int T_GameCount { get; set; }
      public int AddGame()
      {
          Game.T_GameCount += 1;
          return T_GameCount;
      }

      public static void ShowGame()
      {
          T_GameCount = 1;
          //AddGame();不能使用非静态方法
          string fuwuqi = "LT";
          Console.WriteLine("游戏数量:"+T_GameCount+"运营商:+"+fuwuqi);
      }

  }
csharp 复制代码
           //静态对象不能使用类的对象来访问 类名.属性名访问
           Game game=new Game();
           Game.T_GameCount = 1;
           Game.gameType = "Moba";
             int result =game.AddGame();
           Console.WriteLine("gameType:"+Game.gameType+",game.num:"+result);

          Game.ShowGame();

总结

static class 静态类

static 成员

静态方法不能调用普通对象,只能访问静态成员

静态类无法实例化

相关推荐
星火开发设计1 小时前
枚举类 enum class:强类型枚举的优势
linux·开发语言·c++·学习·算法·知识
喜欢吃燃面6 小时前
Linux:环境变量
linux·开发语言·学习
徐徐同学6 小时前
cpolar为IT-Tools 解锁公网访问,远程开发再也不卡壳
java·开发语言·分布式
LawrenceLan6 小时前
Flutter 零基础入门(二十六):StatefulWidget 与状态更新 setState
开发语言·前端·flutter·dart
m0_748229996 小时前
Laravel8.X核心功能全解析
开发语言·数据库·php
qq_192779877 小时前
C++模块化编程指南
开发语言·c++·算法
Mr.朱鹏7 小时前
Nginx路由转发案例实战
java·运维·spring boot·nginx·spring·intellij-idea·jetty
代码村新手7 小时前
C++-String
开发语言·c++
qq_401700418 小时前
Qt 中文乱码的根源:QString::fromLocal8Bit 和 fromUtf8 区别在哪?
开发语言·qt