博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
not 与整数
阅读量:6813 次
发布时间:2019-06-26

本文共 861 字,大约阅读时间需要 2 分钟。

  hot3.png

//Byteprocedure TForm1.Button1Click(Sender: TObject);var  x,y: Byte;begin  x := MAXBYTE;  //MAXBYTE是常数255  y := not x;  //y 的值是 0  x := 5;  y := not x;  //y 的值是 250  ShowMessage(IntToStr(y));end;//Wordprocedure TForm1.Button1Click(Sender: TObject);var  x,y: Word;begin  x := MAXWORD;  //MAXBYTE是常数65535  y := not x;  //y 的值是 0  x := 5;  y := not x;  //y 的值是 65530  ShowMessage(IntToStr(y));end;//Cardinalprocedure TForm1.Button1Click(Sender: TObject);var  x,y: Cardinal;begin  x := 4294967295;  //Cardinal 类型的最大值  y := not x;  //y 的值是 0  x := 5;  y := not x;  //y 的值是 4294967290end;//Integerprocedure TForm1.Button1Click(Sender: TObject);var  x,y: Integer;begin  x := MaxInt;  //MAXInt是常数2147483647  y := not x;  //y 的值是 -2147483648, 也就是Integer的最小值  x := 5;  y := not x;  //y 的值是 -6  y := not x + 1;  //y 的值是 -5end;

转载于:https://my.oschina.net/hermer/blog/319333

你可能感兴趣的文章
连载32:软件体系设计新方向:数学抽象、设计模式、系统架构与方案设计(简化版)(袁晓河著)...
查看>>
什么是响应式网站 为什么会受到客户的喜欢
查看>>
keepalived实现nginx的高可用 + nginx负载均衡
查看>>
阿里云Redis多线程性能提升思路解析
查看>>
JAVA通信
查看>>
动态增加UIView到当前视图中
查看>>
怎么能看透信封
查看>>
css正方形照片墙
查看>>
找工作的程序员必懂的Linux
查看>>
网络基础、进程、计划任务
查看>>
shell脚本实现杨辉三角形
查看>>
ComponentOne 2019V1火热来袭!全面支持 Visual Studio 2019
查看>>
装了一款系统优化工具,如何从Mac上卸载MacBooster 7?
查看>>
使用符号表调试release程序
查看>>
HA(高可用集群)heartbeat
查看>>
旋转转盘
查看>>
服务器之03 CA
查看>>
我的友情链接
查看>>
Delphi 设置系统默认打印机
查看>>
LINQ to SQL(2.1)
查看>>