作者:slightboy
看到好多同学权限判断都是用字符串 然后或分割或截取
其实对于 允许/不允许(true/false) 这种的权限, 用逻辑运算再恰当不过了
声明下: 本文针对入门和为掌握的同学, 如果已经懂了那可以无视了
可能意思表达的不是很清楚, 敬请原谅.
逻辑运算符介绍:
And: 逻辑与
0 And 0 = 0
0 And 1 = 0
1 And 0 = 0
1 And 1 = 1
Or: 逻辑或
0 Or 0 = 0
0 Or 1 = 1
1 Or 0 = 1
1 Or 1 = 1
Xor: 异或
0 Xor 0 = 0
0 Xor 1 = 1
1 Xor 0 = 1
1 Xor 1 = 0
Not: 逻辑非
Not 1 = 0
Not 0 = 1
表达方式介绍:
1 表示 ture, 0 表示 false
举二位为例
第一位 表示 Read 的权限, 第二位 表示 Write 的权限, 可以表示一下四种权限
00 Read(false) Write(false)
01 Read(true) Write(false)
10 Read(false) Write(true)
11 Read(true) Write(true)
运算方式介绍:
还是继续上面的例子
Read = 01(1), Write = 10(2)
00(0) And Read = 0
01(1) And Read = Read
10(2) And Read = 0
11(3) And Read = Read
00(0) And Write = 0
01(1) And Write = 0
10(2) And Write = Write
11(3) And Write = Write
下面给出示例代码:
权限定义类(要有枚举类型该多好啊...)
Class PermissionType
Public Read
Public Write
Public Delete
Private Sub Class_Initialize
Read = 1
Write = 2
Delete = 4
End Sub
End Class
权限类
Class PermissionSetComponent
Private intValue
Public Property Get Read()
Read = GetValue(Permission.Read)
End Property
Public Property Let Read(arg)
Call SetValue(Permission.Read, arg)
End Property
Public Property Get Write()
Write = GetValue(Permission.Write)
End Property
Public Property Let Write(arg)
Call SetValue(Permission.Write, arg)
End Property
Public Property Get Delete()
Delete = GetValue(Permission.Delete)
End Property
Public Property Let Delete(arg)
Call SetValue(Permission.Delete, arg)
End Property
Public Property Get Value()
Value = intValue
End Property
Public Property Let Value(arg)
intValue = arg
End Property
Public Function GetValue(intType)
GetValue = (Value and intType) = intType
End Function
Public Sub SetValue(intType, boolValue)
IF (boolValue) Then
Value = Value Or intType
Else
Value = Value And (Not intType)
End IF
End Sub
End Class
运用示例代码:
Dim Permission : Set Permission = new PermissionType
Dim PermissionSet : Set PermissionSet = new PermissionSetComponent
PermissionSet.Value = 0
w("Read:")
PermissionSet.Read = false
w(PermissionSet.Value &" "& PermissionSet.Read)
PermissionSet.Read = true
w(PermissionSet.Value &" "& PermissionSet.Read)
w("Write:")
PermissionSet.Write = false
w(PermissionSet.Value &" "& PermissionSet.Write)
PermissionSet.Write = true
w(PermissionSet.Value &" "& PermissionSet.Write)
w("Delete:")
PermissionSet.Delete = false
w(PermissionSet.Value &" "& PermissionSet.Delete)
PermissionSet.Delete = true
w(PermissionSet.Value &" "& PermissionSet.Delete)
Function w(o)
Response.Write("<br />"& o)
End Function
今天的课程就到这里, 大家可以举一反三, 下课...
看到好多同学权限判断都是用字符串 然后或分割或截取
其实对于 允许/不允许(true/false) 这种的权限, 用逻辑运算再恰当不过了
声明下: 本文针对入门和为掌握的同学, 如果已经懂了那可以无视了
可能意思表达的不是很清楚, 敬请原谅.
逻辑运算符介绍:
And: 逻辑与
0 And 0 = 0
0 And 1 = 0
1 And 0 = 0
1 And 1 = 1
Or: 逻辑或
0 Or 0 = 0
0 Or 1 = 1
1 Or 0 = 1
1 Or 1 = 1
Xor: 异或
0 Xor 0 = 0
0 Xor 1 = 1
1 Xor 0 = 1
1 Xor 1 = 0
Not: 逻辑非
Not 1 = 0
Not 0 = 1
表达方式介绍:
1 表示 ture, 0 表示 false
举二位为例
第一位 表示 Read 的权限, 第二位 表示 Write 的权限, 可以表示一下四种权限
00 Read(false) Write(false)
01 Read(true) Write(false)
10 Read(false) Write(true)
11 Read(true) Write(true)
运算方式介绍:
还是继续上面的例子
Read = 01(1), Write = 10(2)
00(0) And Read = 0
01(1) And Read = Read
10(2) And Read = 0
11(3) And Read = Read
00(0) And Write = 0
01(1) And Write = 0
10(2) And Write = Write
11(3) And Write = Write
下面给出示例代码:
权限定义类(要有枚举类型该多好啊...)
Class PermissionType
Public Read
Public Write
Public Delete
Private Sub Class_Initialize
Read = 1
Write = 2
Delete = 4
End Sub
End Class
权限类
Class PermissionSetComponent
Private intValue
Public Property Get Read()
Read = GetValue(Permission.Read)
End Property
Public Property Let Read(arg)
Call SetValue(Permission.Read, arg)
End Property
Public Property Get Write()
Write = GetValue(Permission.Write)
End Property
Public Property Let Write(arg)
Call SetValue(Permission.Write, arg)
End Property
Public Property Get Delete()
Delete = GetValue(Permission.Delete)
End Property
Public Property Let Delete(arg)
Call SetValue(Permission.Delete, arg)
End Property
Public Property Get Value()
Value = intValue
End Property
Public Property Let Value(arg)
intValue = arg
End Property
Public Function GetValue(intType)
GetValue = (Value and intType) = intType
End Function
Public Sub SetValue(intType, boolValue)
IF (boolValue) Then
Value = Value Or intType
Else
Value = Value And (Not intType)
End IF
End Sub
End Class
运用示例代码:
Dim Permission : Set Permission = new PermissionType
Dim PermissionSet : Set PermissionSet = new PermissionSetComponent
PermissionSet.Value = 0
w("Read:")
PermissionSet.Read = false
w(PermissionSet.Value &" "& PermissionSet.Read)
PermissionSet.Read = true
w(PermissionSet.Value &" "& PermissionSet.Read)
w("Write:")
PermissionSet.Write = false
w(PermissionSet.Value &" "& PermissionSet.Write)
PermissionSet.Write = true
w(PermissionSet.Value &" "& PermissionSet.Write)
w("Delete:")
PermissionSet.Delete = false
w(PermissionSet.Value &" "& PermissionSet.Delete)
PermissionSet.Delete = true
w(PermissionSet.Value &" "& PermissionSet.Delete)
Function w(o)
Response.Write("<br />"& o)
End Function
今天的课程就到这里, 大家可以举一反三, 下课...
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
暂无“基于逻辑运算的简单权限系统(原理,设计,实现) VBS 版”评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新动态
2024年11月23日
2024年11月23日
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]