码迷,mamicode.com
首页 > 其他好文 > 详细

23.里式转换法则

时间:2020-05-19 12:47:19      阅读:49      评论:0      收藏:0      [点我收藏+]

标签:ace   lse   ogr   OLE   public   namespace   src   用法   img   

里氏转换

1)、子类可以赋值给父类
2)、如果父类中装的是子类对象,那么可以讲这个父类强转为子类对象。

例如:

namespace Demo {


    class Person {
    
    }

    class Student : Person {

     
    }

    class Program {

        static void Main(string[] args) {

            Person p = new Student();

            Student s = (Student)p;
            
            Console.ReadKey();

        }
    }


}

注意:子类对象可以调用父类中的成员,但是父类对象永远都只能调用自己的成员。

is和as

is:表示类型转换,如果能够转换成功,则返回一个true,否则返回一个false
as:表示类型转换,如果能够转换则返回对应的对象,否则返回一个null

is的用法

Person p = new Student();

if (p is Student) {
    Student s = (Student)p;
    s.Eat();
} else {
    Console.WriteLine("转换失败");
}

运行结果:
技术图片

as的用法

namespace Demo {


    class Person {

        public void Eat() {
            Console.WriteLine("吃饭");
        }
    }

    class Student : Person {

        public void Write(){
            Console.WriteLine("写作业");
        }
     
    }

    class Program {

        static void Main(string[] args) {

            Person p = new Student();

            Student s=p as Student;
            s.Write();
   
            Console.ReadKey();

        }
    }


}

运行结果:
技术图片

如果是p=new Person()的话,那么p as Student会返回为null,调用方法时就会报异常。

p = new Person();
Student t = p as Student;
t.Write();

运行结果:
技术图片

23.里式转换法则

标签:ace   lse   ogr   OLE   public   namespace   src   用法   img   

原文地址:https://www.cnblogs.com/lz32158/p/12915984.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!