클래스 및 객체:
클래스와 객체는 실제 개념과 엔터티를 표현하는 데 사용되는 객체지향 프로그래밍(앗)의 기본 개념입니다.[]
클래스는 유사한 속성과 동작을 갖는 개체 그룹을 나타냅니다.
예:
동물형 개:
DOG-는 클래스이고 TOMMY라는 특정 개는 개의 객체입니다.
수업:
Java의 클래스는 공통 특성/동작 및 공통 속성/속성을 공유하는 객체 집합입니다.
객체가 생성되는 사용자 정의 청사진 프로토타입입니다.
클래스는 생성될 때 메모리를 할당하지 않습니다.
클래스는 class 키워드를 사용하여 선언됩니다
클래스 직원{}
여기서 클래스를 정의하는 유일한 방법은 class 키워드를 사용하는 것입니다.
예:
STUDENT는 클래스이고 RAVI라는 특정 학생은 객체입니다.
개체:
객체는 물리적 개체라고 하며 클래스를 나타냅니다.
객체는 실제 엔터티와 클래스의 메모리 참조를 나타냅니다.
객체는 class.java 프로그램의 속성과 메소드를 사용하기 위해 생성된 클래스의 인스턴스로 많은 객체를 생성합니다.
객체는 상태, 행동, 정체성으로 구성됩니다.
객체 생성:
새로운 키워드를 통해 객체가 생성됩니다.
직원 ob=신규 직원();
1.Java에서 객체를 생성하는 방법
The object is a basic building block of an object oriented language(oops). In Java, we cannot execute any program without creating an object. There is various way to create an object in Java that we will discuss in this section, and also learn how to create an object in Java.
Java는 객체를 생성하는 5가지 방법을 제공합니다.
Using new Keyword Using clone() method Using new Instance() method of the Class class Using new Instance() method of the Constructor class Using deserialization
2.Java에서 메소드 호출 방법:
A method in Java is a group of statements that carry out a certain action or function. It is commonly used because it enables code reuse, which refers to the ability to write code once and use it multiple times.
Java에서 메소드를 호출하려면 다음 기본 단계를 따라야 합니다.
Define the method: This includes giving the method a name, specifying any arguments that it takes, and defining what the method should do when it is called. Create an instance of the class: If the method you want to call is part of a class, you need to create an instance of that class. Call the method: Once you have an instance of the class (if necessary), you can use the name of the method, followed by any arguments that the method takes (if any) to call the method.
Java에서 메소드를 정의하는 방법:
To define a method in Java, you need to declare it within a class. The following elements in the method declaration:
Return type: The data type of the value the method returns, or void if it doesn't return a value Method name: The name of the method Parentheses: A pair of parentheses, () Method body: The code for the method, enclosed in braces, {}
메서드 선언에 포함될 수 있는 기타 요소는 다음과 같습니다.
Modifiers: Such as public or private Parameter list: A comma-delimited list of input parameters, preceded by their data types Exception list: An exception list
프로그램 작업:
위 내용은 자바의 클래스와 객체:의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!