package com.java1.day12;
class Document{
static int count = 0;
String name;
public Document() {
this("제목없음" + count++);
}
public Document(String name) {
this.name = name;
System.out.println("문서"+this.name+"이 생성되엇습니다.");
}
}
public class DocumentTest17 {
public static void main(String[] args) {
Document d1 = new Document();
Document d2 = new Document("자바.txt");
Document d3 = new Document();
Document d4 = new Document();
}
}
출력결과
문서제목없음0이 생성되엇습니다.
문서자바.txt이 생성되엇습니다.
문서제목없음1이 생성되엇습니다.
문서제목없음2이 생성되엇습니다.