千家信息网

VB.NET Constructor函式怎么用

发表于:2025-01-20 作者:千家信息网编辑
千家信息网最后更新 2025年01月20日,这篇文章主要介绍VB.NET Constructor函式怎么用,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!Object Oriented编程也就是在Class里加添属性(Pr
千家信息网最后更新 2025年01月20日VB.NET Constructor函式怎么用

这篇文章主要介绍VB.NET Constructor函式怎么用,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

Object Oriented编程

也就是在Class里加添属性(Properties)。有些属性的值数只限于读取而不能写,有些就之能写而不能读取;但一般都是两者兼施

  1. Public Class ClassName

  2. Private VeriableName As DataType

  3. [Public | Private | Protected] [Property]
    PropertyName ( ) As DataType

  4. Get

  5. '// ...

  6. Return VeriableName

  7. End Get

  8. Set (ByVal Value As DataType)

  9. VeriableName = Value

  10. End Set

  11. End Property

  12. End Class

  13. 只能读取值数的属性:

  14. Public Class ClassName

  15. Private VeriableName As DataType

  16. [Public | Private | Protected] [ReadOnly]
    [Property] PropertyName ( ) As DataType

  17. Get

  18. '// ...

  19. Return VeriableName

  20. End Get

  21. End Property

  22. End Class

  23. 只限于冩值数的属性:

  24. Public Class ClassName

  25. Private VeriableName As DataType

  26. [Public | Private | Protected] [WriteOnly]
    [Property] PropertyName ( ) As DataType

  27. Set (ByVal Value As DataType)

  28. VeriableName = Value

  29. End Set

  30. End Property

  31. End Class

怎样在Instantiate Class的同时宣告和执行某些函式,例如建立一个新的SqlConnection Object或者宣告变量等等。要达到这一点,我们就利用Class的VB.NET Constructor函式了。以下就是在Class里添加 VB.NET Constructor函式的语法。

Public Class CalssName  [Public] [Sub] New ( )  '// ...  End Sub  End Class

因为此是Object Oriented编程,所以也可以建立多个不同自变量的VB.NET Constructor函式。但在此就跟编写Overloads方法(Method)有点不同,那就是不需要用Overloads关键字来表示该函式就是Overloads函式。

Public Class CalssName  [Public] [Sub] New (Byval Arguement As DataType)  '// ...  End Sub  End Class

以上是"VB.NET Constructor函式怎么用"这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注行业资讯频道!

0