代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
VB.Net
】
vb 位操作
作者:
Dezai.CN
/ 发布于
2013/6/18
/
1667
'功能: 将字节变量循环左移n位 '入口参数:MoveByte 需要移位的字节变量 ' n 移动的位数 '返回值: 移位后的字节变量 Public Function ByteLeftMove(MoveByte As Byte, N As Integer) As Byte Dim Intem As Byte '临时变量 Dim Intem1 As Byte '临时变量 Dim x As Integer, y As Integer Intem1 = MoveByte For x = 1 To N '移多少位就循环多少次 For y = 8 To 1 Step -1 '从第八位(左边第一位)开始循环左移 Select Case y Case 8 '如果临时变量intem1的第八位是1, If (Intem1 And &H80) = &H80 Then '则将临时变量intem置1, Intem = &H1 Else Intem = &H0 '反之置0 End If Case 7 '如果临时变量intem1的第七位是1, If (Intem1 And &H40) = &H40 Then '则将其第八位置1(其它位不变), Intem1 = Intem1 Or &H80 Else '反之将第八位置0(其它位不变) Intem1 = Intem1 And &H7F End If Case 6 '操作与上面相同 If (Intem1 And &H20) = &H20 Then Intem1 = Intem1 Or &H40 Else Intem1 = Intem1 And &HBF End If Case 5 If (Intem1 And &H10) = &H10 Then Intem1 = Intem1 Or &H20 Else Intem1 = Intem1 And &HDF End If Case 4 If (Intem1 And &H8) = &H8 Then Intem1 = Intem1 Or &H10 Else Intem1 = Intem1 And &HEF End If Case 3 If (Intem1 And &H4) = &H4 Then Intem1 = Intem1 Or &H8 Else Intem1 = Intem1 And &HF7 End If Case 2 If (Intem1 And &H2) = &H2 Then Intem1 = Intem1 Or &H4 Else Intem1 = Intem1 And &HFB End If Case 1 If (Intem1 And &H1) = &H1 Then Intem1 = Intem1 Or &H2 Else Intem1 = Intem1 And &HFD End If If Intem = &H1 Then '移完第一位后,如果intem是1(即第八位是1) Intem1 = Intem1 Or &H1 '则将intem1的第一位置1 Else Intem1 = Intem1 And &HFE '反之置0 End If End Select Next y Next x ByteLeftMove = Intem1 '将intem1的值返回给函数名 End Function '功能: 将字节变量循环右移n位 '入口参数:MoveByte 需要移位的字节变量 ' n 移动的位数 '返回值: 移位后的字节变量 Public Function ByteRightMOve(MoveByte As Byte, N As Integer) As Byte Dim Intem As Byte '临时变量 Dim Intem1 As Byte '临时变量 Dim x As Integer, y As Integer Intem1 = MoveByte For x = 1 To N '移多少位就循环多少次 For y = 1 To 8 Step 1 '从第一位(右边第一位)开始循环右移 Select Case y Case 1 '如果临时变量intem1的第一位是1, If (Intem1 And &H1) = &H1 Then '则将临时变量intem置1, Intem = &H1 Else Intem = &H0 '反之置0 End If Case 2 '如果临时变量intem1的第二位是1, If (Intem1 And &H2) = &H2 Then '则将其第一位置1(其它位不变), Intem1 = Intem1 Or &H1 Else '反之将第一位置0(其它位不变) Intem1 = Intem1 And &HFE End If Case 3 '操作与上面相同 If (Intem1 And &H4) = &H4 Then Intem1 = Intem1 Or &H2 Else Intem1 = Intem1 And &HFD End If Case 4 If (Intem1 And &H8) = &H8 Then Intem1 = Intem1 Or &H4 Else Intem1 = Intem1 And &HFB End If Case 5 If (Intem1 And &H10) = &H10 Then Intem1 = Intem1 Or &H8 Else Intem1 = Intem1 And &HF7 End If Case 6 If (Intem1 And &H20) = &H20 Then Intem1 = Intem1 Or &H10 Else Intem1 = Intem1 And &HEF End If Case 7 If (Intem1 And &H40) = &H40 Then Intem1 = Intem1 Or &H20 Else Intem1 = Intem1 And &HDF End If Case 8 If (Intem1 And &H80) = &H80 Then Intem1 = Intem1 Or &H40 Else Intem1 = Intem1 And &HBF End If If Intem = &H1 Then '移完第八位后,如果intem是1(即第一位是1) Intem1 = Intem1 Or &H80 '则将intem1的第八位置1 Else Intem1 = Intem1 And &H7F '反之置0 End If End Select Next y Next x ByteRightMOve = Intem1 '将intem1的值返回给函数名 End Function '功能: 将字节数据的某一位置 1 或置 0 '入口参数: ByteData 数据 ' BitNumber 位号 ' BitHandleType 位操作类型 0 置0 , 1 置1 '返回值: 处理后的字节数据 Public Function BitHandle(ByVal BitHandleType As Long, ByVal ByteData As Byte, ByVal BitNumber As Long) As Byte Select Case BitHandleType '置0 Case 0 Select Case BitNumber '1位 Case 1 BitHandle = ByteData And &HFE '2位 Case 2 BitHandle = ByteData And &HFD '3位 Case 3 BitHandle = ByteData And &HFB '4位 Case 4 BitHandle = ByteData And &HF7 '5位 Case 5 BitHandle = ByteData And &HEF '6位 Case 6 BitHandle = ByteData And &HDF '7位 Case 7 BitHandle = ByteData And &HBF '8位 Case 8 BitHandle = ByteData And &H7F End Select '置1 Case 1 Select Case BitNumber '1位 Case 1 BitHandle = ByteData Or &H1 '2位 Case 2 BitHandle = ByteData Or &H2 '3位 Case 3 BitHandle = ByteData Or &H4 '4位 Case 4 BitHandle = ByteData Or &H8 '5位 Case 5 BitHandle = ByteData Or &H10 '6位 Case 6 BitHandle = ByteData Or &H20 '7位 Case 7 BitHandle = ByteData Or &H40 '8位 Case 8 BitHandle = ByteData Or &H80 End Select End Select End Function '功能: 判断字节数据的某一位是 0 还是 1 '入口参数: ByteData 数据 ' BitNumber位号 '返回值: 检测位的数据 Public Function CheckBit(ByVal ByteData As Byte, BitNumber As Long) As Byte Select Case BitNumber '1位 Case 1 If (ByteData And &H1) = &H1 Then CheckBit = 1 Else CheckBit = 0 End If '2位 Case 2 If (ByteData And &H2) = &H2 Then CheckBit = 1 Else CheckBit = 0 End If '3位 Case 3 If (ByteData And &H4) = &H4 Then CheckBit = 1 Else CheckBit = 0 End If '4位 Case 4 If (ByteData And &H8) = &H8 Then CheckBit = 1 Else CheckBit = 0 End If '5位 Case 5 If (ByteData And &H10) = &H10 Then CheckBit = 1 Else CheckBit = 0 End If '6位 Case 6 If (ByteData And &H20) = &H20 Then CheckBit = 1 Else CheckBit = 0 End If '7位 Case 7 If (ByteData And &H40) = &H40 Then CheckBit = 1 Else CheckBit = 0 End If '8位 Case 8 If (ByteData And &H80) = &H80 Then CheckBit = 1 Else CheckBit = 0 End If End Select End Function
试试其它关键字
位操作
同语言下
.
根据User Agent来判定操作系统与浏览器类型
.
将PPT内容导出为JPG图片
.
Java屏幕截取
.
发送邮件组件
.
子窗体在父窗体指定的控件中显示
.
取文件的大小
.
从某个目录中筛选文件
.
VB脚本调用exe应用程序并传递参数
.
图像格式转换工具
.
洗牌算法
可能有用的
.
实现测量程序运行时间及cpu使用时间
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
Dezai.CN
贡献的其它代码
(
4037
)
.
多线程Socket服务器模块
.
生成随机密码
.
清除浮动样式
.
弹出窗口居中
.
抓取url的函数
.
使用base HTTP验证
.
div模拟iframe嵌入效果
.
通过header转向的方法
.
Session操作类
.
执行sqlite输入插入操作后获得自动编号的ID
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3