Java のプリミティブ データ型は、データの型とサイズを指定するデータ型ですが、追加のメソッドは提供しません。 Java で使用できるプリミティブ データ型の例には、byte、short、int、char、long、float、boolean、double などがあります。
無料ソフトウェア開発コースを始めましょう
Web 開発、プログラミング言語、ソフトウェア テスト、その他
構文:
以下は、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 のプリミティブ データ型は、次の 4 つのグループに細分できます。
Java の整数データ型は、正と負を格納します。 byte、short、int、long などのデータ型は、このデータ型のカテゴリに分類されます。
このタイプのデータ型は、10 進数を保存するために設計されています。 Float と Double は、このカテゴリのデータ型に分類されます。
これは、さまざまなデータ型とサイズを示す表です:
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 中国語 Web サイトの他の関連記事を参照してください。