생성자 /* 생성자(Constructor)의 특징 디폴트 생성자를 재정의할 수 있다. 사용자가 다른 생성자를 정의한다면 시스템에서 제공하는 생성자(디폴트 생성자)는 사용할 수 없다. 생성자도 오버로딩할 수 있다. 오버로딩 생성자 public DirectCons(){ } //매개변수 없는 생성자 public DirectCons(String n, String a, int g){ } //매개변수 있는 생성자 */ public class TopConstructor { private String name = null; private String address = null; private int age = 0; //디폴트 생성자를 다시 만듬 public TopConstructor() { name = "이름없음"; //멤버.. 더보기 심심해서 만든 마름모 import java.io.*; public class Star { /** * @param args */ public static void main(String[] args) throws IOException{ int i=0,j=0,k=0; System.out.print("숫자를 입력하세요 : "); InputStreamReader isr = new InputStreamReader(System.in); BufferedReader in = new BufferedReader(isr); String str = in.readLine(); int num = Integer.parseInt(str); for(i=0;ii;j--){ System.out.print(" "); } for(j=0;j 더보기 이전 1 ··· 15 16 17 18 19 20 21 ··· 40 다음