int n = 0;
จากการประกาศตัวแปร(Declaration)ข้างต้น จะเรียกได้ว่าเป็นการจองพื้นที่และกำหนดรูปแบบข้อมูลเพื่อใช้งานกับเลขจำนวนเต็ม ตั้งชื่อตัวแปรว่า 'n' โดยจะเรียกใช้งานพื้นที่นี้ต้องเรียกใช้งานผ่านชื่อตัวแปรที่กำหนดให้เท่านั้น จนกว่าตัวแปรนั้นจะถูกกำจัดออกไป การประกาศตัวแปรนี้ยังกำหนดค่าเริ่มต้น(Initial)มีค่าเท่ากับ 0
ภาษาโปรแกรม Java มี Primitive Data Types อยู่ 8 รูปแบบด้วยกัน โดยกำหนดชื่อให้เป็น
Reserve Word หรือคำสงวน ห้ามนำไปตั้งชื่อเป็นตัวแปร
byte: The
byte
data type is an 8-bit signed two's complement integer. It has a minimum value of -128 and a maximum value of 127 (inclusive).short: The
short
data type is a 16-bit signed two's complement integer. It has a minimum value of -32,768 and a maximum value of 32,767 (inclusive).int: The
int
data type is a 32-bit signed two's complement integer. It has a minimum value of -2,147,483,648 and a maximum value of 2,147,483,647 (inclusive).long: The
long
data type is a 64-bit signed two's complement integer. It has a minimum value of -9,223,372,036,854,775,808 and a maximum value of 9,223,372,036,854,775,807 (inclusive).float: The
float
data type is a single-precision 32-bit IEEE 754 floating point.double: The
double
data type is a double-precision 64-bit IEEE 754 floating point.boolean: The
boolean
data type has only two possible values: true
and false
.char: The
char
data type is a single 16-bit Unicode character. It has a minimum value of '\u0000'
(or 0) and a maximum value of '\uffff'
(or 65,535 inclusive).
ไม่มีความคิดเห็น:
แสดงความคิดเห็น