勇芳软件 发表于 2018-2-27 11:03:51

【VFB】类(VFB教程4-4)

此处为VisualFreeBasic编程教程(从零开始学或VB进阶)的子章节部分,全部目录点链接。类,自定义类型type aaa    bb as long
end type上面只是简单的应用类型,还可以更多,写过程,写函数,写属性,就是完整的类Constructor 和 Destructor (构造函数和析构函数)type aaa    Declare Constructor ( )
    Declare Destructor ( )
end type
Destructor aaa ( )
statements 创建类时运行的代码
End Destructor
Constructor aaa()
statements 销毁类时运行的代码
End ConstructorPrivate: 和 Public:type aaa    Public:'表示调用者可以用
    bb as long
    Private: '表示只是类里的函数使用的全局变量,调用者不可以使用
    cc as long
end typeProperty 属性type CForm    Declare Property hWindow() As HWnd   
    Declare Property hWindow(ByVal hForm As HWnd)
end type
Property CForm.hWindow() As HWnd   
    Return m_hWindow
End Property
Property CForm.hWindow(ByVal hForm As HWnd)
    If IsWindow(hForm) Then
    End If
End Property


xiawan 发表于 2022-5-17 09:31:12


如此好贴,必须支持~~~
页: [1]
查看完整版本: 【VFB】类(VFB教程4-4)