超级属性,任意【数据类型】与【对象】通用!
时 间:2020-07-06 08:25:08
作 者:litao ID:37995 城市:上海
摘 要:给【类模块】添加一个超级属性,能任意扩展、改变!
一次添加,一次爽!
这次添加,无穷爽!
正 文:
但是,很多时候很尴尬,经常性的要去修改旧有的类,增加或改变【类】的属性。当程序越写越大的时候,改变一个常用的【类】,将是一个非常巨大的工程。
考虑很久,我给我写的【类模块】加上一个万用的属性,随时可以扩展、修改。
它以一个词典为基础,添加一个Develop属性,具备任意扩展性! 属性值支持任意数据类型或对象。
--------------------代码---------------------------
Private DevelopDic_ As Scripting.Dictionary '扩展属性词典
Public Property Get Develop_Exists(Key As String) As Boolean '验证扩展属性是否存在
If DevelopDic_ Is Nothing Then Set DevelopDic_ = New Scripting.Dictionary
Develop_Exists = DevelopDic_.Exists(Key)
End Property
Public Property Get Develop(Key As String) '获取扩展属性
If Me.Develop_Exists(Key) = False Then GoTo Err1
On Error GoTo Next1
Set Develop = DevelopDic_.Item(Key)
Exit Property
Next1:
On Error GoTo Next2
Develop = DevelopDic_.Item(Key)
Exit Property
Next2:
On Error GoTo Err1
Develop = Null
Err1:
End Property
Public Property Let Develop(Key As String, Val As Variant) '属性赋值
If DevelopDic_ Is Nothing Then Set DevelopDic_ = New Scripting.Dictionary
DevelopDic_.Item(Key) = Val
End Property
Public Property Set Develop(Key As String, Obj As Object) '设置对象引用
If DevelopDic_ Is Nothing Then Set DevelopDic_ = New Scripting.Dictionary
Set DevelopDic_.Item(Key) = Obj
End Property
Access软件网官方交流QQ群 (群号:54525238) Access源码网店
常见问答:
技术分类:
源码示例
- 【源码QQ群号19834647...(12.17)
- Access对子窗体数据进行批...(10.30)
- 最精简的组合框行来源数据快速输...(10.25)
- Access仿平台的多值选择器...(10.24)
- 【Access日期区间段查询】...(10.22)
- 【Access源码示例】VBA...(10.12)
- Access累乘示例,Acce...(10.09)
- 数值8.88,把整数8去掉,转...(10.08)
- 【Access自定义函数】一个...(09.30)
- 【Access选项卡示例】Ac...(09.09)
学习心得
最新文章
- Access判断多条明细的配方或订...(11.30)
- 如何让后台数据库在局域网共享时,且...(11.29)
- 【Access月初月末日期设置方法...(11.29)
- 【Access IIF函数嵌套示例...(11.26)
- Access快速开发平台--使用组...(11.25)
- Access快速开发平台--对上传...(11.22)
- Access快速开发平台企业版--...(11.18)
- 不会用多表联合查询,多表查询没结果...(11.16)
- 【案例分享】主键字段值含有不间断空...(11.16)
- Access快速开发平台--后台D...(11.14)