Using bitwise operations in C # For permission management

Source: Internet
Author: User

Common bitwise operations include (&), (|), and (~), For example:

1 & 0 = 0, 1 | 0 = 1 ,~ 1 = 0

When designing a permission, we can convert the permission management operation to a C # bitwise operation.

Step 1: Create an enumeration to indicate all permission management operations:

 
  
  
  1. [Flags]Public EnumPermissions {
  2. Insert = 1,
  3. Delete = 2,
  4. Update = 4,
  5. Query = 8}

[Flags] indicates that this enumeration can support the C # bitwise operation. For each enumerated value, we use the Npower of 2 to assign a value. In this way, when it is binary, it is exactly 1 = 0001, 2 = 0010, 4 = 0100, 8 = 1000, etc. Each digit indicates a permission. 1 indicates that the permission is granted, and 0 indicates that no.

Next is the permission calculation:

1. The addition of permissions is implemented using the OR operation. We know that 0001 | 0100 = 0101 means that permissions with the first and third places are managed at the same time, and enumeration means:

Permissions per = permissions. Insert | permissions. Update

2. Permission Subtraction is implemented by operations + non-operations. To remove the insert permission, perform the following operations:

Permissions per & = ~ Permissions. Insert means 0101 &~ 0001 = 0101 & 1110 = 0100

3. when determining whether a user has the permission for this operation, the user's permission and operation permission should be performed and calculated, if the result is still operation permission management, the user has this permission:

 
  
  
  1. Permissions per = permissions. Insert | permissions. update;
  2. If(Per & permissions. Insert = permissions. insert)
  3. {
  4. // Operation permission 
  5. }

when the comparison process is 0101 & 0001 = 0001,000, the 0 bits of 1 are set to 0 using the bitwise operation with C #, And the other bits are changed to the one that only compares 1.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.