Java는 James Gosling이 디자인한 객체 지향 프로그래밍입니다. 클래스 기반이며 동시 프로그래밍 기능을 갖춘 범용 프로그래밍 언어입니다. 멀티스레딩 기능도 있습니다. 이는 정적이고 안전하며 강력한 형식의 프로그래밍 언어입니다. 이는 Oracle Corporation(당시 Sun Corporation)에서 개발하고 유지 관리합니다. 파일 확장자 이름은 .java 또는 .class입니다. 1995년에 처음 등장했습니다. 한 번 작성하면 어디서나 실행할 수 있는 애플리케이션을 개발하기 위한 것입니다. 클라이언트-서버 종류의 응용 프로그램에 가장 많이 사용됩니다. GNU General Public License 및 Java Community Process에 따라 라이센스가 부여됩니다. 최신 버전의 Java는 2018년 3월에 출시된 10입니다.
Java 프로그래밍 언어는 클래스, 객체, 상속, 다형성, 캡슐화 및 추상화와 같은 다양한 개념을 갖는 객체 지향 프로그래밍 방법론 또는 패러다임을 기반으로 하며 다음과 같이 설명할 수 있습니다.
광고 이 카테고리에서 인기 있는 강좌 프로그래밍 언어 - 전문 분야 | 54 코스 시리즈 | 4가지 모의고사Java에는 다양한 객체 지향 프로그래밍 응용 프로그램이 있으며 아래는 이 개념 영역의 예입니다.
클래스는 다음과 같이 정의할 수 있습니다.
public class Employee { private int employeeId; private String employeeName; public int getSalary(int basicPay, int da, int hra) { int salary = basicPay + da + hra; return salary; } }
위 클래스에서 EmployeeId, 직원 이름 및 getSalary() 메소드는 클래스의 멤버이고, EmployeeId 및 직원 이름은 속성 또는 필드이고 getSalary()는 실제 작업이 수행되는 메소드입니다.
위 Employee 클래스에 대해서는 아래와 같이 객체를 생성할 수 있습니다.
Employee employeeObject = new Employee();
위 줄에서는 new 키워드를 사용하여 객체가 생성되고 Employee()는 객체를 생성하는 데 사용되는 빈 인수 생성자입니다. 직원은 Employee 클래스에 대한 참조에 반대합니다.
이는 메서드 재정의 및 오버로딩을 통해 달성할 수 있습니다.
public int getSalary(int basicPay, int da, int hra) { int salary = basicPay + da + hra; return salary; }
위 메서드에서 아래와 같이 괄호 안에 추가하면 getSalary() 메서드에 또 다른 인수를 추가할 수 있습니다.
public int getSalary(int basicPay, int da, int hra, int bonus) { int salary = basicPay + da + hra + bonus; return salary; }
This can be achieved as below:
public class Employee { private int employeeId; private String employeeName; public int getEmployeeId() { return employeeId; } public void setEmployeeId(int employeeId) { this.employeeId = employeeId; } public String getEmployeeName() { return employeeName; } public void setEmployeeName(String employeeName) { this.employeeName = employeeName; } }
The above class Employee has two fields (private) and four methods (getters and setters) which will be used to access the above two private attributes.
This is the process of hiding the implementation functionality.
In the above method getSalary(), the internal function of the addition of all the components of a salary is hidden inside the method, and only this can be accessed by using the method name by passing the values as method arguments. In this way, the total salary will be obtained by passing the individual salary components to the method.
There are different and multiples areas of applications in the field of the Web world, Standalone, and many other areas for the Object-Oriented Programming in Java concept. The average utilization or application of object-oriented programming in Java has been in the top 5 positions for most of the enterprise applications and has been in almost every enterprise as of now is the most sought-after technology. There are huge numbers of tools available, such as IDEs, to develop applications using object-oriented programming in Java. Many companies are using Java-based applications for their requirements because of the ease of development and maintenance. The standalone apps developed in Java are mostly being used by many companies for their in-house tools They are developed based on Java Swing GUI toolkit and are now called Java FX in its recent version. The recent version of Java 8 provides great functional programming features and parallel processing capabilities with its Stream API.
This has been a guide to Object-Oriented Programming in Java. Here we have discussed the Different concepts and the applications of Object-Oriented Programming in Java. You may also look at the following article to learn more –
위 내용은 Java의 객체 지향 프로그래밍의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!