∮explotación≒ 개발

✅ 자바 초급 용어 정리

TipoAzul 2025. 11. 18.
반응형

✅ 자바 초급 용어 정리

 

 

✅ 자바 초급 용어 정리

Java 기초 용어

영어 용어 (Term) 정의 (Definition) 한국어 해석 (Korean Explanation)
Java A high-level, object-oriented programming language used for building a variety of applications. 다양한 응용 프로그램을 구축하기 위한 고급 객체 지향 프로그래밍 언어.
Class A blueprint for creating objects, defining fields and behaviors. 객체를 생성하기 위한 설계도. 필드와 동작을 정의한다.
Object An instance of a class that holds data and behavior. 데이터와 행동을 가진 클래스의 인스턴스.
Variable A container for storing data values in a program. 프로그램에서 데이터를 저장하는 용기.
Method A function defined inside a class to define actions that an object can perform. 클래스 내에서 정의된 함수로, 객체가 수행할 수 있는 동작을 정의한다.
Constructor A special method used to initialize objects when they are created. 객체가 생성될 때 초기화하는 특수한 메서드.
Return A statement that is used to return a value from a method. 메서드에서 값을 반환하는 데 사용되는 명령문.
Data Type A classification that specifies which type of value a variable can hold. 변수가 가질 수 있는 값의 유형을 지정하는 분류.
String A sequence of characters used to represent text. 문자를 나열하여 텍스트를 표현하는 데이터 타입.
int A data type used to represent integer numbers (whole numbers). 정수값을 나타내는 데이터 타입.
boolean A data type that can hold only two values: true or false. 참 또는 거짓만을 가질 수 있는 데이터 타입.
Array A collection of variables of the same type stored in a single container. 같은 타입의 변수를 한 곳에 저장한 컬렉션.
if statement A conditional statement that executes a block of code if a specified condition is true. 조건이 참이면 코드 블록을 실행하는 조건문.
else statement A statement that executes a block of code when the condition in the if statement is false. if 문이 거짓일 때 코드 블록을 실행하는 문.
while loop A loop that repeats as long as a specified condition is true. 지정된 조건이 참일 때 계속 반복하는 루프.
for loop A loop used to repeat a block of code a specific number of times. 정해진 횟수만큼 코드를 반복하는 루프.
Break A statement used to exit from a loop or switch statement. 루프나 switch문에서 빠져나오는 데 사용하는 명령문.
Continue A statement used to skip the current iteration of a loop and continue with the next iteration. 현재 반복을 건너뛰고 다음 반복으로 넘어가는 명령문.
Switch A control statement that executes one of many code blocks based on a variable's value. 변수의 값에 따라 여러 코드 블록 중 하나를 실행하는 제어문.
반응형

댓글