实现代码如下:

<%
class MyClass
Dim var '公共变量必须使用Dim
Private var2'私有变量不需要

Sub sub1
response.write var2
End Sub

Private Sub sub2
response.write var
End Sub

Sub SetVar(v)
var2=v
End Sub
end class
Set cls = new MyClass'产生对象用set
cls.SetVar("asd")
cls.var = 1
cls.sub1'封装性比较强,不会提示没有权限,直接说不支持属性或方法
%>

以上就是【ASP中的面向对象类】的全部内容了,欢迎留言评论进行交流!

赞(0) 踩(0)

与本文相关的软件

发表我的评论

最新评论

  1. 暂无评论