| 发表于:2007-03-28 14:29:152楼 得分:0 |
'form1 option explicit function xy(x as integer, y as integer) as long xy = x + y end function private sub class_initialize() msgbox "类开始 " end sub private sub class_terminate() msgbox "类结束 " end sub 'class1.bas option explicit function xy(x as integer, y as integer) as long xy = x + y end function private sub class_initialize() msgbox "类开始 " end sub private sub class_terminate() msgbox "类结束 " end sub | | |
|