객체(Object)

Objects can be represented through class.

Class는 객체의 속성(attribute)과 행위(behavior)를 Definition

객체는 클래스의 인스턴스(Instance), 각 객체는 자신만의 속성과 행위 가짐.

ex)Dog Class

Dog Class -> 품종, 색깔, 나이 attributes 혹은 먹다, 짖다, 꼬다 등의 행위 수행 가능.

ex2) Person Class

A Person class can have specific information such as name, age, and address

class Person {
  String name;
  int age;
  
  void introduce() {
    System.out.println("안녕하세요, 제 이름은 " + name + "이고, " 
   + age + "살 입니다.");
  }
}

// 클래스에서 객체 생성
Person person = new Person();
person.name = "John Doe";
person.age = 30;
person.introduce();

This code defined a 'Person' class.

It contains name and age variables and an include method.

The introduce method prints personal information. And create an object from the class, and set its variables to specific values. Finally, we call the object's introduce method to display the information.

'Developer 지식' 카테고리의 다른 글

Domain  (0) 2023.04.02
Sample code in object and Instance.  (0) 2023.04.02
JAVA TDD  (0) 2023.04.02
트러블 슈팅이란?  (0) 2023.04.02
API가 뭘까? (Application Programing interface)  (0) 2022.08.01

+ Recent posts