> Java > java지도 시간 > 자바의 클래스와 객체:

자바의 클래스와 객체:

Mary-Kate Olsen
풀어 주다: 2024-12-30 15:28:14
원래의
674명이 탐색했습니다.

클래스 및 객체:
클래스와 객체는 실제 개념과 엔터티를 표현하는 데 사용되는 객체지향 프로그래밍(앗)의 기본 개념입니다.[]
클래스는 유사한 속성과 동작을 갖는 개체 그룹을 나타냅니다.

예:
동물형 개:
DOG-는 클래스이고 TOMMY라는 특정 개는 개의 객체입니다.

수업:
Java의 클래스는 공통 특성/동작 및 공통 속성/속성을 공유하는 객체 집합입니다.
객체가 생성되는 사용자 정의 청사진 프로토타입입니다.
클래스는 생성될 때 메모리를 할당하지 않습니다.
클래스는 class 키워드를 사용하여 선언됩니다
클래스 직원{}
여기서 클래스를 정의하는 유일한 방법은 class 키워드를 사용하는 것입니다.

예:
STUDENT는 클래스이고 RAVI라는 특정 학생은 객체입니다.
개체:
객체는 물리적 개체라고 하며 클래스를 나타냅니다.
객체는 실제 엔터티와 클래스의 메모리 참조를 나타냅니다.
객체는 class.java 프로그램의 속성과 메소드를 사용하기 위해 생성된 클래스의 인스턴스로 많은 객체를 생성합니다.
객체는 상태, 행동, 정체성으로 구성됩니다.

  • 예:
  • 객체의 예 :DOG
  • 정체성--개 이름
  • 상태/속성--연령, 색상, 품종
  • 행동--짖고, 자고, 먹습니다

객체 생성:
새로운 키워드를 통해 객체가 생성됩니다.
직원 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: 
로그인 후 복사

class and object in java:

    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
로그인 후 복사

프로그램 작업:

class and object in java:

위 내용은 자바의 클래스와 객체:의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:dev.to
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿