본문 바로가기

돕자클럽 앱개발 투자 신용대출 재테크 P2P대출63

Creating Objects 객체 생성하기 객체 생성하기 Creating Objects 잘 알다시피, 클래스는 객체에 대한 설계도입니다; 어떤 클래스로부터 어떤 객체 1개를 생성합니다. CreateObjectDemo 프로그램에서 취한 다음 명령문의 각각은, 객체를 생성하고 생성된 객체를 변수에 할당합니다: As you know, a class provides the blueprint for objects; you create an object from a class. Each of the following statements taken from the CreateObjectDemo program creates an object and assigns it to a variable:Point originOne = new Point(23, 94); R.. 2016. 1. 5.
Objects 객체 객체 Objects 자바 프로그램은 많은 객체를 생성하는데, 객체들을 메소드들을 invoking함으로써 상호작용합니다. 이들 객체간 상호작용을 통하여, 프로그램은 GUI 구현, 애니메이션 가동 또는 네트웍 상에서의 정보 송수과 같은 다양한 과제들을 수행할 수 있습니다. 객체가 생성된 것에 대한 작업을 일단 완료하면, 그 리소스들을 다른 객체들이 재사용합니다.아래에 CreateObjectDemo라는 이름의 작은 프로그램이 있는데 이것은 1개의 Point 객체 및 2개의 Rectangle 객체 등 3개의 객체를 생성합니다. 이 프로그램을 컴파일하려면 모두 3개의 소스 파일이 필요합니다.A typical Java program creates many objects, which as you know, inter.. 2016. 1. 5.
Passing Information to a Method or a Constructor 메소드 또는 생성자에게 정보 전달하기 메소드 또는 생성자에게 정보 전달하기 Passing Information to a Method or a Constructor 메소드 또는 생성자 선언은 해당 메소드 또는 생성자의 아규먼트의 갯수와 타입을 선언합니다. 예를 들어, 아래는 대출금액, 이자율, 대출기간(기간 수) 및 미래 대출금액에 근거한, 가계대출에 대한 매월 지급을 계산하는 메소드 입니다: The declaration for a method or a constructor declares the number and the type of the arguments for that method or constructor. For example, the following is a method that computes the monthly payme.. 2016. 1. 5.
Providing Constructors for Your Classes 클래스에 생성자 제공하기 클래스에 생성자 제공하기 Providing Constructors for Your Classes 클래스에는, 객체를 생성하기 위하여 클래스 설계도로부터 invoke되는, 생성자(constructors)가 포함되어 있습니다. 생성자 선언은, 클래스 이름을 사용하고 리턴 타입이 없다는 점을 제외하고는 메소드 선언과 같습니다. 예를 들어, Bicycle은 1개의 생성자를 갖고 있습니다:A class contains constructors that are invoked to create objects from the class blueprint. Constructor declarations look like method declarations—except that they use the name of the c.. 2016. 1. 5.
Defining Methods 메소드 정의하기 메소드 정의하기 Defining Methods 아래는 전형적 메소드 선언의 예 입니다: Here is an example of a typical method declaration:public double calculateAnswer(double wingSpan, int numberOfEngines, double length, double grossTons) { //do the calculation here } 메소드 선언의 필수항목은 메소드의 return 타입, 이름, 한 쌍의 괄호 (), 그리고 중괄호 {} 사이의 몸체 입니다.보다 일반적으로, 메소드 선언들은 다음의 6개 구성요소를 순서대로 갖고 있습니다:The only required elements of a method declaration are.. 2016. 1. 5.
Declaring Member Variables 멤버변수 선언하기 멤버변수 선언하기 Declaring Member Variables 몇 가지 종류의 변수가 있습니다: There are several kinds of variables:클래스 안의 멤버변수 - 이들을 필드(fields)라고 합니다. Member variables in a class—these are called fields.메소드 또는 코드블록 안의 변수 - 이들을 로컬변수(local variables)라고 합니다. Variables in a method or block of code—these are called local variables.메소드 선언 안의 변수 - 이들을 패러미터(parameters) 라고 합니다. Variables in method declarations—these are calle.. 2016. 1. 5.