转至繁体中文版     | 网站首页 | 图文教程 | 资源下载 | 站长博客 | 图片素材 | 武汉seo | 武汉网站优化 | 
最新公告:     敏韬网|教学资源学习资料永久免费分享站!  [mintao  2008年9月2日]        
您现在的位置: 学习笔记 >> 图文教程 >> 软件开发 >> VB.NET程序 >> 正文
VB.Net中文教程(6) 母子对象关系         ★★★★

VB.Net中文教程(6) 母子对象关系

作者:闵涛 文章来源:闵涛的学习笔记 点击数:3248 更新时间:2009/4/23 19:01:09
m.WinForms
''''----------------------------------------------------
Class Room
    Protected rSize As Double
    Shared motherObject As Room
   
    Shared Function GetMother() As Room
        GetMother = motherObject
    End Function
    Public Overridable Sub Create()
        motherObject = Me
    End Sub
    Public Function GetSize() As Double
        GetSize = rSize
    End Function
End Class

Class Desk
    Protected dSize As Double
    Public Sub Create()
        dSize = Room.GetMother().GetSize() * 0.18
    End Sub
    Public Function GetSize() As Double
        GetSize = dSize
    End Function
End Class
''''----------------------------------------------------
Class MyRoom
    Inherits Room
    Private rd As New Desk()
   
    Public Sub New()
        Me.Create()
    End Sub
    Public Overrides Sub Create()
        MyBase.Create()
        rSize = 100
        rd.Create()
    End Sub
    Public Sub Show()
        MessageBox.Show("Room Size: " + str(rSize))
        MessageBox.Show("Desk Size: " + str(rd.GetSize()))
    End Sub
End Class
''''----------------------------------------------------
Public Class Form1
    Inherits System.WinForms.Form
   
    Public Sub New()
        MyBase.New()
        Form1 = Me
        ''''This call is required by the Win Form Designer.
        InitializeComponent()
        ''''TODO: Add any initialization after the InitializeComponent() call
    End Sub
    ''''Form overrides dispose to clean up the component list.
    Public Overrides Sub Dispose()
        MyBase.Dispose()
        components.Dispose()
    End Sub
#Region " Windows Form Designer generated code "
    .......
#End Region
    Protected Sub Form1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        Dim r As New MyRoom()
        r.Show()
    End Sub
End Class

此程序输出:
               Room Size: 100
               Desk Size:  18

像指令── dSize = Room.GetMother().GetSize() * 0.18﹐已挪到新设的Create()程序里。待母对象完全建好了﹐才会呼叫这Create()程序﹐GetSize() 就能取得正确值了。MyRoom的New()呼叫Create()程序时﹐母子对象皆已建造完成了。Create()内部依人们的习惯来设定对象之值,例如建立母子对象之关系。

         

如此就不会出问题了。
    New()与Create()分离之后,MyRoom类别里的指令:

Class MyRoom
    Inherits Room
    Private rd As New Desk()
   
    Public Sub New()
        Me.Create()
    End Sub
........

也能写为:
Class MyRoom
    Inherits Room
    Private rd As Desk
   
    Public Sub New()
        rd = New Desk()
        Me.Create()
    End Sub
........

只要确保Desk类别的指令──
      dSize = Room.GetMother().GetSize() * 0.18

是在MyRoom类别的指令──
      rSize = 100

之后执行即可了。
    上述的子对象是透过Shared 程序来取得母对象的参考值﹐然后才跟母对象沟通。如果不透过Shared程序,也可以采取下述方法:

''''ex04.bas
Imports System.ComponentModel
Imports System.Drawing
Imports System.WinForms
''''----------------------------------------------------
Class Room
    Protected rSize As Double
   
    Public Overridable Sub Create()
    End Sub
    Public Function GetSize() As Double
        GetSize = rSize
    End Function
End Class

Class Desk
    Protected dSize As Double
    Protected myMother As Room
   
    Public Sub Create(ByVal mo As Room)
        myMother = mo
        dSize = myMother.GetSize() * 0.18
    End Sub
    Public Function GetSize() As Double
        GetSize = dSize
    End Function
End Class
''''----------------------------------------------------
Class MyRoom
    Inherits Room
    Private rd As Desk
   
    Public Sub New()
        rd = New Desk()
        Me.Create()
    End Sub
    Public Overrides Sub Create()
        rSize = 100
        rd.Create(Me)
    End Sub
    Public Sub Show()
        MessageBox.Show("Room Size: " + str(rSize))
        MessageBox.Show("Desk Size: " + str(rd.GetSize()))
    End Sub
End Class
''''----------------------------------------------------
Public Class Form1
    Inherits System.WinForms.Form
   
    Public Sub New()
        MyBase.New()
        Form1 = Me
        ''''This call is required by the Win Form Designer.
        InitializeComponent()
        ''''TODO: Add any initialization after the InitializeComponent() call
    End Sub
    ''''Form overrides dispose to clean up the component list.
    Public Overrides Sub Dispose()
        MyBase.Dispose()
        components.Dispose()
    End Sub
#Region " Windows Form Designer generated code "
    ......
#End Region
    Protected Sub Form1_Click(ByVal sender As Object,
                            ByVal e As System.EventArgs)
        Dim r As New MyRoom()
        r.Show()
    End Sub
End Class

此程序输出:
               Room Size: 100
               Desk Size:  18

Desk之对象含个参考 myMother ﹐指向其母对象。这项关系是在母子对象皆建好时﹐才由Create()程序所建立的。于是﹐建立出母子对象之关系﹕

          

综上所述,当MyRoom类别使用如下指令──
 Private rd As New Desk()

时,才必须把New()与Create()分离。如果使用如下指令──

Private rd As Desk
Public Sub New()
    rd = New Desk()
    .....
End Sub
 
就不必分离了,原因是:New()与Create()的执行顺序是一致的,例如两者可合并如下的VB程序:

''''ex05.bas
Imports System.ComponentModel
Imports System.Drawing
Imports System.WinForms
''''----------------------------------------------------
Class Room
    Protected rSize As Double
   
    Public Function GetSize() As Double
        GetSize = rSize
    End Function
End Class

Class Desk
    Protected dSize As Double
    Protected myMother As Room
   
    Public Sub New(ByVal mo As Room)
        myMother = mo
        dSize = myMother.GetSize() * 0.18
    End Sub
    Public Function GetSize() As Double
        GetSize = dSize
    End Function
End Class
''''----------------------------------------------------
Class MyRoom
    Inherits Room
    Private rd As Desk
   
    Public Sub New()
        rSize = 100
        rd = New Desk(Me)
    End Sub
    Public Sub Show()
     &

上一页  [1] [2] [3] [4]  下一页


没有相关教程
教程录入:mintao    责任编辑:mintao 
  • 上一篇教程:

  • 下一篇教程:
  • 【字体: 】【发表评论】【加入收藏】【告诉好友】【打印此文】【关闭窗口
      注:本站部分文章源于互联网,版权归原作者所有!如有侵权,请原作者与本站联系,本站将立即删除! 本站文章除特别注明外均可转载,但需注明出处! [MinTao学以致用网]
      网友评论:(只显示最新10条。评论内容只代表网友观点,与本站立场无关!)

    同类栏目
    · C语言系列  · VB.NET程序
    · JAVA开发  · Delphi程序
    · 脚本语言
    更多内容
    热门推荐 更多内容
  • 没有教程
  • 赞助链接
    更多内容
    闵涛博文 更多关于武汉SEO的内容
    500 - 内部服务器错误。

    500 - 内部服务器错误。

    您查找的资源存在问题,因而无法显示。

    | 设为首页 |加入收藏 | 联系站长 | 友情链接 | 版权申明 | 广告服务
    MinTao学以致用网

    Copyright @ 2007-2012 敏韬网(敏而好学,文韬武略--MinTao.Net)(学习笔记) Inc All Rights Reserved.
    闵涛 投放广告、内容合作请Q我! E_mail:admin@mintao.net(欢迎提供学习资源)

    站长:MinTao ICP备案号:鄂ICP备11006601号-18

    闵涛站盟:医药大全-武穴网A打造BCD……
    咸宁网络警察报警平台