• VB中的属性 Property


    和C#中的Property不同,VB中的Property通过三个过程来实现:Property Get,Property Let,Property Set
    分别为读值,赋值,和对象类型赋值。实现的原理和Property的作用和C#中并无二致,只是C#的形式更为统一,简洁。

    [Public | Private | Friend] [Static] Property Get p_name [(arglist)] [As type]
    [statements]
    [p_name = expression]
    [Exit Property]
    [statements]
    [p_name = expression]
    End Property

    Property Get 过程和普通的Sub过程比较相似。Get属性p_name 将会在过程内得到赋值。p_name = (value)的形式。相当于C#中的属性
    Get部分: Return value ;由于p_name被赋值使用,所以应该有返回值。


    [Public | Private | Friend] [Static] Property Let p_name ([arglist,] value)
    [statements]
    [Exit Property]
    [statements]
    End Property

    Property Let 过程的作用是给Property对应的变量(设为p)赋值。相当于C#中Set部分:p=value;这是一个无返回值的过程。

    [Public | Private | Friend] [Static] Property Set name ([arglist,] reference)
    [statements]
    [Exit Property]
    [statements]
    End Property

    Properyt Set 过程和Property Let一样,只使Let是对普通变量,Set是对对象而言。VB并不是彻底的面向对象。在数据类型方面是传统的

    基本的类型和对象两种。

    转载自 http://blog.sina.com.cn/s/blog_4dfc31d7010009nk.html

    你给了我眼睛,却不给我光明。
  • 相关阅读:
    07_Go语言 ( 切片)
    06_Go语言( 数组)
    05_Go语言( 流程控制)
    04_Go语言( 运算符)
    02_Go语言(变量和常量)
    01_Go语言(环境的搭建)
    云电脑直播简单指南
    统信UOS共享打印机配置
    #插头dp#洛谷 5074 Eat the Trees
    #状压dp#洛谷 3959 [NOIP2017 提高组] 宝藏
  • 原文地址:https://www.cnblogs.com/wwb0111/p/3098905.html
Copyright © 2020-2023  润新知