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 중국어 웹사이트의 기타 관련 기사를 참조하세요!