1. 首页
  2. 数据库
  3. 其它
  4. ASP中的面向对象类

ASP中的面向对象类

上传者: 2021-02-01 12:40:26上传 PDF文件 19.69KB 热度 9次
代码如下: <% 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’封装性比较强,不会提示没有权限,直接说不支持属性或方法 %>
下载地址
用户评论