首页 > 编程 > Delphi > 正文

Delphi中取某整数的某位的位状态的小函数

2019-11-18 18:20:33
字体:
来源:转载
供稿:网友

type

   TPosRange=0..32;

      TStateResult=0..1;

function GetBitSate(Source:Integer;Pos:TPosRange):TStateResult;

begin

   Result:=((Source and (1 shl Pos))shr Pos);

end;


上一篇:传说中的DELPHI9--DiamondBack

下一篇:DELPHI的原子世界

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表
学习交流
热门图片

新闻热点

疑难解答

图片精选

网友关注