博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#base使用笔记
阅读量:6655 次
发布时间:2019-06-25

本文共 666 字,大约阅读时间需要 2 分钟。

一,base继承使用

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace baseDemo{    class Program    {        static void Main(string[] args)        {            B b = new B("在A中输出");        }    }    public class A    {        private string a;        public A(string a)        {            this.a = a;            Console.WriteLine(a);        }    }    public class B : A    {        //如果继承了A,并且A的构造带参数,此时你如果不使用base(b)时会报错,        //错误:“baseDemo.A”不包含采用“0”个参数的构造函数        public B(string b)            : base(b)        {        }    }}

由于程序在运行时,会执行父类的构造函数,而此时如果想要将参数传给父类使用,即可以使用base

 

转载于:https://www.cnblogs.com/May-day/p/6729039.html

你可能感兴趣的文章
js----预解析,作用域链
查看>>
leetcode 264. Ugly Number II
查看>>
如何创建Hiren的BootCD USB磁盘 -- 制作U盘启动盘
查看>>
lubuntu自动登录(lxde)
查看>>
Python--day39--管道和数据共享(面试可能会问到)
查看>>
第十二章 Python网络编程
查看>>
Caffe错误汇总与解决办法
查看>>
1079. Total Sales of Supply Chain (25)
查看>>
xcrun: error: unable to find utility "PackageApplication", not a developer tool or in PATH
查看>>
Oracle数据库中的左连接与右连接
查看>>
POJ-1742 Coins
查看>>
segmentController
查看>>
淘宝初始化代码 - 解决浏览器的兼容问题
查看>>
在win8 64位操作系统下Power Designer 16.5对MySQL5.6逆向工程的配置详解
查看>>
07.Javascript——入门高阶函数
查看>>
LeetCode – Refresh – Remove Duplicates from Sorted Array
查看>>
centos 7 中没有iptables 和service iptables save 指令使用失败问题解决方案
查看>>
R语言数据可视化1—ggplot2画柱状图
查看>>
Ubuntu安装微信开发者工具
查看>>
Windows 7 MVC2.0部署到IIS7【原创】
查看>>