java中的原始資料類型是指定資料類型和大小但不提供任何額外方法的資料類型; Java 中可用的基本資料類型的範例包括byte、short、int、char、long、float、boolean 和double。
開始您的免費軟體開發課程
網頁開發、程式語言、軟體測試及其他
文法:
以下是顯示 Java 中如何使用原始資料型別的語法:
byte byteData= 88; //declaring byte data type short shortData= 6000; //declaring short data type int intData= 20; // declaring integer data type long longData = 20000000000000L; // declaring long data type float floatdata= 1.1f; // declaring float data type double doubleData = 29.94d; // declaring double data type boolean booleanData= true; //declaring boolean data type char charData = ’b’; // declaring character data type
java中的原始資料型別可以細分為以下四組:
java中的整數資料型別儲存正數和負數。 byte、short、int 和 long 等資料型別都屬於這類資料型別。
這種類型的資料類型是為了儲存十進制數字而設計的。浮點型和雙精度型屬於此類資料類型。
這是一個顯示不同資料型別以及大小的表格:
Primitive Data Type | Size | Details |
byte | 1 byte | Stores positive and negative numbers ranging from -128 to 127. |
int | 4 bytes | Stores positive and negative numbers ranging from -2,147,483,648 to 2,147,483,647. |
short | 2 bytes | Stores positive and negative numbers ranging from -32,768 to 32,767. |
long | 8 bytes | Stores positive and negative numbers from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807. |
float | 4 bytes | Stores Decimal numbers. It can be used for storing numbers having 6 to 7 decimal digits |
double | 8 bytes | Stores Decimal numbers. It can be used for storing numbers having 15 decimal digits. |
boolean | 1 bit | Can Store Only true or false. |
char | 2 bytes | It can be used for storing only a single character, letter or ASCII values. |
public class DataTypeDemo { public static void main(String[] args) { byte byteData= 88; //declaring byte data type int intData= 20; // declaring integer data type short shortData= 6000; //declaring short data type long longData = 20000000000000L; // declaring long data type float floatdata= 1.1f; // declaring float data type double doubleData = 29.94d; // declaring double data type boolean booleanData= true; //declaring boolean data type char charData = 'A'; // declaring character data type System.out.println("Value Declared using Byte Data Type is " + byteData); System.out.println("Value Declared using Integer Data Type is " + intData); System.out.println("Value Declared using Short Data Type is " + shortData); System.out.println("Value Declared using Long Data Type is " + longData); System.out.println("Value Declared using Float Data Type is " + floatdata); System.out.println("Value Declared using Double Data Type is " + doubleData); System.out.println("Value Declared using Character Data Type is " + charData); System.out.println("Value Declared using Boolean Data Type is " + booleanData); } }
代碼:
輸出: 結論 為了學習任何程式語言,正確理解不同的資料型別非常重要。上面的文章詳細解釋了java原始資料類型,並舉例說明了每種資料類型的意義。
以上是Java 中的原始資料型別的詳細內容。更多資訊請關注PHP中文網其他相關文章!