생성자(자동으로 추가되지 않는 경우)

Dec 21, 2023
생성자(자동으로 추가되지 않는 경우)
 
 
💡
생성자를 하나라도 선언하면 기본 생성자는 자동으로 생기지 않는다.
package ex04; class Box { int width, height, depth; public Box(int w, int h, int d) { width = w; height = h; depth = d; } } public class BoxTest { public static void main(String[] args) { int w = 10; int h = 10; int d = 10; Box b = new Box(w, h, d); System.out.println("상자의 너비, 높이, 깊이: (" + b.width + ", " + b.height + ", " + b.depth + ")"); } }
Share article

hyeonjeong-jang-0302

RSS·Powered by Inblog