public class Display {

String title;


public Display() {

this.title = new String();

this.title += "*************************************\n\n\n";

this.title += "          제목 1.0V\n\n\n";

this.title += "          ㅁㅇㄹF4\n";

this.title += "*************************************\n\n\n";


public void control() {


this.title();


}


public void title() {

System.out.printInt(this.title);

}

--------------------------------------------------

여기에서 


public Display() {


이부분이 기본 생성자? 라고 본거같은데 뭐 어떤역할을 하는거에요?


this.title이 어떻게 구성 된건지 잘 이해가 가지 않습니다.