c#学习02
标签:space mic set font vat lin 图片 http color
string方法的一些函数作用
2.继承演示
-子类
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApp1
{
///
/// 胡萝卜类:继承与蔬菜类。在这里继承是这样写的“:”
///
class Carrot : Vegetables
{
public static void Main(string[] args) {
Carrot carrot = new Carrot();
carrot.effect();//调用的父类的方法
carrot.rhizome();//调的子类的方法
carrot.Vitamin = "abcdefghijklmnopqrstuvwxyz";//给父类赋值
}
///
/// 隐藏基类方法
///
public new void rhizome()
{
Console.WriteLine("细小根茎类植物");
}
}
}
-父类
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApp1
{
///
/// 蔬菜类
///
class Vegetables
{
///
/// 维生素
///
private string _vitamin;
public string Vitamin { get => _vitamin; set => _vitamin = value; }
public void effect() {
Console.WriteLine("多吃有益健康");
}
public void rhizome() {
Console.WriteLine("根茎类植物");
}
}
}
c#学习02
标签:space mic set font vat lin 图片 http color
原文地址:https://www.cnblogs.com/li-yan-long/p/14001567.html
文章来自:
搜素材网的
编程语言模块,转载请注明文章出处。
文章标题:
c#学习02
文章链接:http://soscw.com/index.php/essay/36852.html
评论