Do it! 자바 프로그래밍 입문 / 5.5 생성자 ~ 5.7 정보 은닉
·
Programming Language/자바(JAVA)
public class Student_Test { public static void main(String[] args) { Student st = new Student(); st.setName("토자맨"); System.out.println(st.getName()); } } 5.5 생성자 package chapter5; public class Person { String name; float height; public static void main(String[] args) { Person cho = new Person(); } } new Person() 의 Person()이 (디폴트)생성자이다. 생성자는 클래스 객체를 생성할 때 멤버 변수, 상수를 초기화 하는 역할을 한다. 디폴트 생성자는 생성자를 하..