自己很喜欢编程,也喜欢上网收集一些资料,随着VB.NET的发展,现在越多的人使用它,现在我就把我总结的一些方法给大家分享一下关于VB.NET Object Oriented编程的,大家可以记下来留着以后编程中用。
#T#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