C# late binding和early binding是什么意思?

mydearU2022-10-04 11:39:541条回答

已提交,审核后显示!提交回复

共1条回复
金叉不倒 共回答了27个问题 | 采纳率85.2%
http://study.feloo.com/gaokao/196077.html
借鉴一下哈
1年前

相关推荐

java语言中late binding和early binding是什么意思?
java语言中late binding和early binding是什么意思?
To solve the problem,object-oriented languages use the concept of late binding.
The function call generated by a non-OOP compiler causes what is called early binding,a term you may not have heard before because you’ve never thought about it any other way.
空白2005小白1年前1
felix0277 共回答了17个问题 | 采纳率76.5%
前期绑定主要是final声明的,因为它不能被继承,在编译时就知道它的值.
而其它的,因为可能被继承或实现,涉及到多态,不能在编译时确定,所以这用到后期绑定