Read it if you have the patience (the algorithm is still important)
User initial weight: Enable = 0;
If a user has the first power Select, then the user weight: Enable = Enable + 1;
If If a user has the second power Insert, then the user weight is: Enable = Enable + 2;
If a user has the third power Update, then the user weight is: Enable = Enable + 4;
If a user If there is a fourth power, Delete, then the user weight is: Enable = Enable + 8;
Why +1, +2, +4, +8 in order, instead of +1, +2, +3, +4?
If it is +1, +2, +3, +4:
If a user has the first right Select, then the user weight is: Enable = Enable + 1;
If a user has the second If a user has the third right, Insert, then the user’s weight is: Enable = Enable + 2;
If a user has the third right, Update, then the user’s weight is: Enable = Enable + 3;
If a user has the fourth right, Update Delete, then the user weight is: Enable = Enable + 4;
Then when the user weight is: Enable = 3, you cannot judge whether the user has both the
first power Select and the second power Insert. Two rights, or only the third power, Update,
The former weight algorithm can avoid this situation.
But when using the former weight algorithm, how to quickly know which rights the user has
from the user's weight Enable? If the user rights value is Enable = 5, the user has the first power Select and the third power Update.
Note that the user does not have the second power Insert.
I will list the user rights below:
Power Possess Power User's weight Enable
SelectItem: (1, 3, 5, 7, 9, 11, 13, 15)
InsertItem: (2 , 3, 6, 7, 10, 11, 14, 15 )
UpdateItem: ( 4, 5, 6, 7, 12, 13, 14, 15 )
DeleteItem: (8, 9, 10, 11, 12, 13, 14, 15)
It can be seen that users with large Enable weights do not have "more" rights.
If: User Rights Value Enable = 3, the user has the first power (Select) and the second power (Insert), a total of two rights,
User power value Enable = 4, the user has the third power (Update), only one rights.
Look carefully at the "User Power List":
SelectItem: (1, 3, 5, 7, 9, 11, 13, 15): 1 = 0 + 2 raised to the 0th power; 3 = 2 raised to the 1st power Power + 2 to the 0th power; 5 = 2 to the 2nd power + 2 to the 0th power;
InsertItem: (2, 3, 6, 7, 10, 11, 14, 15): 2 = 0 + 2 1 power; 3 = 2 power 0 + 2 power 1; 6 = 2 power 2 + 2 power 1;
UpdateItem: (4, 5, 6, 7, 12, 13 , 14, 15): 4 = 0 + 2 to the power of 2; 5 = 2 to the power of 0 + 2 to the power of 2; 6 = 2 to the power of 2 + 2 to the power of 2;
DeleteItem: ( 8, 9, 10, 11, 12, 13, 14, 15): 8 = 0 + 2 to the 3rd power; 9 = 2 to the 0th power + 2 to the 3rd power 10 = 2 to the 1st power + 2 3rd power;
The rules are summarized as follows:
The weight of the Select user with the first power: Enable = ? + 2 to the 0th power; (where ? must also be divided into 2 and the Nth power added together Situation)
Have the second power Insert user's weight: Enable = ? + 1 power of 2; (where ? must also be split into the sum of N powers of 2)
Have the third power Power Update user’s weight: Enable = ? + 2 to the power of 2; (where ? must also be split into the sum of N powers of 2)
The fourth power of Delete user’s weight: Enable = ? + 2 to the 3rd power; (where ? must also be split into the sum of 2 to the Nth power)
It is already very clear at this point:
As long as the user's weight Enable is split into 2 to N In the case of summation of powers,
if there is N=0 in it, it has the first power Select,
if there is N=1 in it, it has the second power Insert,
if there is N in it =2, then you have the third power Update,
If N=3, you have the fourth power Delete,
Then how to quickly split the user weight Enable into the sum of N powers of 2 What's the situation?
Haha! Just convert Enable into binary and take the base from right to left. If the base is the bit, it has the corresponding rights.
For example:
(11)10=(1011)2, that is, it has the first, second, and The four powers are consistent with the "User Power List";
(12)10=(1100)2, that is, having the third and fourth powers, consistent with the "User Power List";
(15)10= (1111)2, that is, possessing the first, second, third, and fourth powers, consistent with the "user power list";
When the power level is extremely complex, the algorithm can quickly know the user's power:
For example:
A total of 8 levels, user weight Enable=67; (67)10=(1000011)2, that is, it has the first, sixth, and seventh powers,
User weight Enable=67; (159)10 =(10011111)2, that is, it has the first, fourth, fifth, sixth, seventh and eighth powers.
That’s it. I hope I didn’t waste your time and inspired you.

“本地用户和组”实用程序内置于“计算机管理”中,可以从控制台访问,也可以独立访问。但是,一些用户发现Windows11中缺少本地用户和组。对于可以访问它的一些人来说,该消息显示,此管理单元可能不适用于此版本的Windows10。若要管理此计算机的用户帐户,请使用“控制面板”中的“用户帐户”工具。该问题已在上一次迭代Windows10中报告,并且通常是由于用户端的问题或疏忽引起的。为什么Windows11中缺少本地用户和组?您运行的是Windows家庭版,本地用户和组在专业版及更高版本上可用。活动

由于权限,并不总是可以访问某些文件夹,在今天的指南中,我们将向您展示如何在Windows11上的旧硬盘驱动器上访问用户文件夹。此过程很简单,但可能需要一段时间,有时甚至数小时,具体取决于驱动器的大小,因此请格外耐心并严格按照本指南中的说明进行操作。为什么我无法访问旧硬盘上的用户文件夹?用户文件夹的所有权属于另一台电脑,因此您无法对其进行修改。除了所有权之外,您对该文件夹没有任何权限。如何打开旧硬盘上的用户文件?1.取得文件夹的所有权并更改权限找到旧的用户目录,右键单击它,然后选择属性。导航到“安

Ubuntu系统添加了很多用户,想在不用的用户想要删除,该怎么删除呢?下面我们就来看看详细的教程。1、打开终端命令行,运用userdel命令删除指定的用户,注意要加sudo权限指令,如下图所示2、在删除的时候一定注意是在管理员目录下的,普通的用户是没有这个权限的,如下图所示3、删除指令执行完了以后怎么判断是否真正删除了呢?下面我们运用cat命令打开passwd文件,如下图所示4、我们看到passwd文件中已经没有了所删除的用户信息了,这证明用户已经被删除了,如下图所示5、然后我们进入home文件

Microsoft开始推出作为Windows503145511H22或更高版本的可选更新向公众KB2。这是第一个默认启用Windows11Moment4功能的更新,包括受支持区域中的WindowsCopilot、对“开始”菜单中项目的预览支持、任务栏的取消分组等。此外,它还修复了Windows11的几个错误,包括导致内存泄漏的潜在性能问题。但具有讽刺意味的是,2023年<>月的可选更新对于尝试安装更新的用户甚至已经安装更新的用户来说都是一场灾难。许多用户不会安装此Wi

微软邀请Canary和Dev频道的WindowsInsider项目成员,测试和体验新版画图(Paint)应用,最新版本号为11.2306.30.0。本次版本更新最值得关注的新功能是一键抠图功能,用户只需要点击一下,就能自动消除背景,凸显画面主体,便于用户后续操作。整个步骤非常简单,用户在新版画图应用中导入图片,然后点击工具栏上“移除背景”(removebackground)按钮,就可以删除图片中的背景,用户也可以使用矩形来选择要消除背景的区域。

TranslucentTB是寻求时尚简约桌面外观的Windows11爱好者广泛使用的工具,遇到了障碍。自从发布以来Windows11内部版本22621.1344(22H2)28年2023月日,TranslucentTB对大多数用户不起作用。此错误使用户努力应对其任务栏的有限自定义选项。用户在寻求克服这一挫折的解决方案时,挫败感显而易见。在最近的Windows11更新之后,TranslucentTB无法正常工作的问题已在多个在线平台上广泛报道,包括论坛和社交媒体。用户一直在分享他们的经验,拼命寻找

mysql修改host的方法:1、通过“sudo service mysql stop”停掉mysql服务;2、以安全模式启动mysql,然后重置root密码;3、通过“update user set Host='%' where User='hive';”语句修改host即可。

随着iOS17的推出,Apple使iPhone用户可以下载地图以供离线使用。此功能为可能前往互联网连接不可靠或不存在的地区的用户提供了实用的解决方案。通过将地图下载到他们的设备上,用户可以确保即使失去蜂窝连接,他们也可以始终访问他们想要的路线。离线地图不仅仅是一个位置的静态图像。它们为用户提供了丰富的信息,例如地点的小时数和评级、转弯路线和预计到达时间。这意味着即使没有Wi-Fi或蜂窝连接,用户仍然可以导航和访问有关周围环境的关键信息。在“地图”中使用搜索功能打开“地图”应用,在搜索中搜索某个地


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6
Visual web development tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool
