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 成员

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

静态类无法实例化

相关推荐
天若有情6731 小时前
笑喷!乌鸦哥版demo函数掀桌怒怼主函数:难办?那就别办了!
java·前端·servlet
m5655bj1 小时前
使用 Python 高效复制 Excel 行、列、单元格
开发语言·python·excel
Murphy_lx2 小时前
C++ std_stringstream
开发语言·c++·算法
SimonKing2 小时前
你的IDEA还缺什么?我离不开的这两款效率插件推荐
java·后端·程序员
better_liang2 小时前
每日Java面试场景题知识点之-数据库连接池配置优化
java·性能优化·面试题·hikaricp·数据库连接池·企业级开发
v***87042 小时前
QoS质量配置
开发语言·智能路由器·php
Wpa.wk2 小时前
自动化测试环境配置-java+python
java·开发语言·python·测试工具·自动化
yangshuquan2 小时前
使用 C# + IronOcr,轻松实现图片文字自动识别(OCR)和提取
c#·ocr·编程技巧·winforms
天天代码码天天2 小时前
TSR18测速雷达C#对接
c#·雷达测速·tsr18测速雷达