C#中获取byte第四位和高四位方法和获取设置byte每一位的值
2022/4/15 22:42:39
本文主要是介绍C#中获取byte第四位和高四位方法和获取设置byte每一位的值,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
C#低四位
public static int GetLow4(byte data) {//获取低四位 return data & 0x0f; }
C#高四位
public static int getHeight4(byte data) {//获取高四位 return (data & 0xf0) >> 4; }
C#获取每一位的值
/// <summary> /// 获取字节中的指定Bit的值 /// </summary> /// <param name="this">字节</param> /// <param name="index">Bit的索引值(0-7)</param> /// <returns></returns> public static int GetBit(byte data, short index) { byte x = 1; switch (index) { case 0: { x = 0x01; } break; case 1: { x = 0x02; } break; case 2: { x = 0x04; } break; case 3: { x = 0x08; } break; case 4: { x = 0x10; } break; case 5: { x = 0x20; } break; case 6: { x = 0x40; } break; case 7: { x = 0x80; } break; default: { return 0; } } return (data & x) == x ? 1 : 0; }
C#中关于获取查看二进制的方法,还有这么一种
byte b = 200; string s = Convert.ToString(b, 2);
C#设置每一位的值(这个我其实看不懂,不知道对不对,有点渣)
/// <summary> /// 设置某一位的值 /// </summary> /// <param name="data">需要设置的byte数据</param> /// <param name="index">要设置的位, 值从低到高为 1-8</param> /// <param name="flag">要设置的值 true / false</param> /// <returns></returns> public static byte set_bit(byte data, int index, bool flag) { if (index > 8 || index < 1) throw new ArgumentOutOfRangeException("位过8或小于1是不可以的"); int v = index < 2 ? index : (2 << (index - 2)); return flag ? (byte)(data | v) : (byte)(data & ~v); }
这篇关于C#中获取byte第四位和高四位方法和获取设置byte每一位的值的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2022-03-01沐雪多租宝商城源码从.NetCore3.1升级到.Net6的步骤
- 2024-12-06使用Microsoft.Extensions.AI在.NET中生成嵌入向量
- 2024-11-18微软研究:RAG系统的四个层次提升理解与回答能力
- 2024-11-15C#中怎么从PEM格式的证书中提取公钥?-icode9专业技术文章分享
- 2024-11-14云架构设计——如何用diagrams.net绘制专业的AWS架构图?
- 2024-05-08首个适配Visual Studio平台的国产智能编程助手CodeGeeX正式上线!C#程序员必备效率神器!
- 2024-03-30C#设计模式之十六迭代器模式(Iterator Pattern)【行为型】
- 2024-03-29c# datetime tryparse
- 2024-02-21list find index c#
- 2024-01-24convert toint32 c#