c# – 每种类型的标识符的正确术语是什么?

前端之家收集整理的这篇文章主要介绍了c# – 每种类型的标识符的正确术语是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
请使用以下代码
IFoo foo = new FooImplementation();

标识符foo有两种类型:

> IFoo – 这是编译器将强制执行的类型.我只能调用属于IFoo契约的方法,否则我会遇到编译器错误.
> FooImplementation – 这是运行时已知的类型.我可以在运行时将foo向下转换为FooImplementation,然后调用FooImplementation的非IFoo方法.

我的问题:这两种类型的正确术语是什么.我可以在学校发誓,我们被告知IFoo是标识符的静态类型,而FooImplementation是它的动态类型,但经过大量搜索后我似乎无法找到任何参考.

解决方法

我将分别调用IFoo和FooImplementation编译时和运行时类型. C#规范使用这种语言,例如,在谈论虚拟方法时(第1.6.6.4节):

When a virtual method is invoked,the run-time type@H_404_18@ of the instance for which that invocation takes place determines the actual method implementation to invoke. In a nonvirtual method invocation,the compile-time type@H_404_18@ of the instance is the determining factor.

原文链接:https://www.f2er.com/csharp/97737.html

猜你在找的C#相关文章