Class Con_Math Public A Public B Private intC Public Function Sum() intC = cint(A) + cint(B) Sum = intC End Function End Class set math = new Con_Math math.A = 19 math.B = 80 Response.write math.Sum set math = nothing
16 男同志在家吃完饭,是要洗碗洗锅的吧. set ** = nothing 也是同样的道理.这个和创建Recordset之后要清掉也是一样的用法. set nothing以后,就表示它从内存里面丢弃了,这个万能包装箱所占的位置就空出来了,你的网站性能当然会提高,还犹豫什么? 用完了赶紧set nothing. 我知道大家都不会这么玩Function的,至少是Sum(19,80)才更方便使用,好,我们在包装箱上再打一个洞出来:
复制代码 代码如下:
Class Con_Math Public A Public B Private intC Public Function Sum() intC = cint(A) + cint(B) Sum = intC End Function Public Function Sum2(ByVal vA,ByVal vB) Sum2 = cint(vA) + cint(vB) End Function End Class set math = new Con_Math Response.write math.Sum2(19,80) set math = nothing