整形資料 分類
型別位元組數
取值範圍
有符號整型
shortint
1-128~127
smallint
2-32768~32767
integer
4-2(31) ~2(31)-1
int64
8-2(63) ~2(63)-1
無符號整型
byte
10~255
word
20~65535
longword
40~ 2(32)-1
浮點single
4位元組浮點數精度8位
real,double
8位元組浮點數精度16位
2.字元型資料
1、字元型
char 、widechar (乙個16位的unicode字元)
表示一般為 'a' , 'a' , #65 , 'a'
2、字串型
型別名稱
最大長度
短字元型
shortstring
255個字元
長字元型
ansistring
2(31)個字元
寬字元型
widestring
2(30)個字元
字串型
string
2(31)個字元
3、布林型資料
true 1 ,false 0
4、常量和變數
const
pi = 3.14159; //常量定義
alph = pi/3; //pi此前已經定義過,可以直接使用
enterchar:char=#13; //定義常量並定義型別
pi2:real = 3.1416
xingming:string[8]='zhangsan';
1.變數
var
《變數名 >:《變數型別》
var 《變數名》,《變數名》 : 《變數型別》
type
month=1..12;
x,y,z:real;
ch:char;
m1,m2:month;
days:array[1..12] of integer;
注意:
var 定義後 在定義const 後面不能跟var定義如:
a:integer;
const b:integer = 1;
c:integer; //錯誤
Delphi資料型別
資料型別 1 常用型別 shortint char byte byte,unsigned short smallint short word unsigned short real48 6位元組浮點數 integer,longint int,long cardinal,longword dword ...
Delphi 資料型別列表
delphi 資料型別列表 分類 範圍位元組 備註簡單型別 序數整數 integer 2147483648 2147483647 4有符號32位 cardinal 0 4294967295 4無符號32位 shortint 128 127 1有符號8位 allint 32768 32767 2有符號...
Delphi 資料型別列表
分類 範圍位元組 備註簡單型別 序數整數 integer 2147483648 2147483647 4有符號32位 cardinal 0 4294967295 4無符號32位 shortint 128 127 1有符號8位 smallint 32768 32767 2有符號16位 longint ...