전체보기156 개발자 정리 잘되어 있는 사이트 http://blog.naver.com/julymorning4 2008. 3. 22. property 플러그인 주소 http://propedit.sourceforge.jp/eclipse/updates/ 2008. 3. 22. 이미지 가비지 늘리기 D:\eclipse\eclipse.exe -nl en_us -vmargs -Xverify:none -Xms256m -Xmx512M -XX:PermSize=64M -XX:MaxPermSize=256M D:\eclipse\eclipse.exe 이거 뒤에 -nl en_us -vmargs -Xverify:none -Xms256m -Xmx512M -XX:PermSize=64M -XX:MaxPermSize=256M 이거를 한칸 뛰우고 부치게 되면 ^^ 속도도 조금 빠른거 같고 그럭저럭 쓸만한거 같다. 2008. 3. 22. [JAVA] 리턴형 있는 메서드와 리턴형 없는 메서드 //생성자// 리터형이 없는 메서드 class Test{ public static void main(String args[]){ Child ch=new Child("똘이",6); Child ch1=new Child("순이"); ch.gotoSchool(); ch.getCandy(); ch1.gotoSchool(); ch1.getCandy(); } } class Child{ String s; int i; Child(String s, int i){ this.s=s; this.i=i; } Child(String s){ this.s=s; } void gotoSchool(){ System.out.println(i+"학년인"+s+"가 학교에간다"); } void getCandy(){ System.out.printl.. 2008. 3. 21. [JAVA]메서드와 생성자에 대해서... String str="abcd"; int i=str.indexof("bc"); class String{ int indexof(String str1){ } } ----------------------------------------- String str="abcd"; char[] arr=str.tocharArray(); for(int i=0 ; i 2008. 3. 21. [JAVA]자바 기초 로직 잔돈계산을 시스템창으로 출력하기 class Ja{ public static void main(String args[]){ int a=Integer.parseInt(args[0]); int b=Integer.parseInt(args[1]); int s=a-b; int c,d,e,f,g,h; c=d=e=f=g=h=0; c=s/5000; h=s%5000; d=h/1000; h=h%1000; e=h/500; h=h%500; f=h/100; h=h%100; g=h/50; h=h%50; h=h/10; System.out.println("손님이지불한금액 ="+a); System.out.println("손님이 구입한금액 ="+b); System.out.println(""); System.out.println("거스름돈 ="+s); System.out.. 2008. 3. 21. 이전 1 ··· 12 13 14 15 16 17 18 ··· 26 다음