VB.NET Object Oriented编程技巧有哪些
小编给大家分享一下VB.NET Object Oriented编程技巧有哪些,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
VB.NET Object Oriented编程内功心法一:
也就是在Class里加添属性(Properties)。有些属性的值数只限于读取而不能冩,有些就之能冩而不能读取;但一般都是两者兼施
Public Class ClassName Private VeriableName As DataType [Public | Private | Protected] [Property] PropertyName ( ) As DataType Get '// ... Return VeriableName End Get Set (ByVal Value As DataType) VeriableName = Value End Set End Property End Class
只能读取值数的属性:
Public Class ClassName Private VeriableName As DataType [Public | Private | Protected] [ReadOnly] [Property] PropertyName ( ) As DataType Get '// ... Return VeriableName End Get End Property End Class
只限于冩值数的属性:
Public Class ClassName Private VeriableName As DataType [Public | Private | Protected] [WriteOnly] [Property] PropertyName ( ) As DataType Set (ByVal Value As DataType) VeriableName = Value End Set End Property End Class
VB.NET Object Oriented编程内功心法二:
怎样在Instantiate Class的同时宣告和执行某些函式,例如建立一个新的SqlConnection Object或者宣告变量等等。要达到这一点,我们就利用Class的Constructors函式了。以下就是在Class里添加 Constructor函式的语法。
Public Class CalssName [Public] [Sub] New ( ) '// ... End Sub End Class
因为此是Object Oriented编程,所以也可以建立多个不同自变量的Constructor函式。但在此就跟编冩Overloads方法(Method)有点不同,那就是不需要用Overloads关键字来表示该函式就是Overloads函式。
Public Class CalssName [Public] [Sub] New (Byval Arguement As DataType) '// ... End Sub End Class
VB.NET Object Oriented编程内功心法三:
有了Contructor当然就要有Destructor嘛;世界所有物軆本来是双双对对。。。就连Object Oriented编程也一样,否则就不平衡了。而Destructor函式是在系统将要释放Object时所执行,所以一般Destructor都是用来解放在整个Object里所用过(宣告和建立)的资源。
Public Class ClassName [Protected] [Overrides] [Sub] Finalize ( ) '// ... End Sub End Class
以上是“VB.NET Object Oriented编程技巧有哪些”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网行业资讯频道!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341