전체 글
-
-
단일상속 extends Object & 접근지정자 protected & super,this개발노하우/Java 2007. 5. 7. 11:52
import java.lang.*; // 생략된 형태 class AA extends Object{ int x = 100; } class BB extends AA{ int y = 200; } class CC extends BB{ int z = 300; } public class object extends Object{ public static void main(String arg[]){ CC cp = new CC(); System.out.println("z ="+cp.z); System.out.println("y ="+cp.y); System.out.println("x ="+cp.x); } } ===============================================================..
-
FileReader & BufferedReader & ObjectOutputStream & ObjectInputStream개발노하우/Java 2007. 5. 4. 10:14
// 파일을 입력받아 그 내용을 출력 import java.io.*; public class object { public static void main(String arg[])throws IOException{ File f = new File("ccc.txt"); FileReader fr = new FileReader(f); BufferedReader br = new BufferedReader(fr); while(true) { String s = br.readLine(); if(s==null) break; System.out.println(s); } br.close(); } } =======================================================================..
-
-
Console & File I/O개발노하우/Java 2007. 4. 30. 12:00
import java.io.*; public class object { public static void main(String arg[])throws IOException{ FileOutputStream fos1 = new FileOutputStream(FileDescriptor.out); File f = new File("aaa.txt"); FileOutputStream fos2 = new FileOutputStream(f); byte by[] = new byte[]{'H','e','l','l','o',' ','J','A','V','A'}; fos1.write(by); fos2.write(by); fos1.close(); fos2.close(); } } ===========================..
-
듀얼코어 100% 활용하기.유용한정보 2007. 4. 30. 09:49
http://www.parkoz.com/zboard/view.php?id=my_tips&page=1&sn1=&divpage=2&sn=off&ss=on&sc=off&select_arrange=headnum&desc=asc&no=9040 이것은 OS가 듀얼코어를 100% 지원하지 않게끔 설정되어 있기 때문이라고 하네요 따라서 직접 설정을 통해 듀얼코어를 최대한 발휘하게 해 주는 것이라고 합니다 요구사항 서비스팩2가 깔린 윈도 XP(홈이던, 프로던, 미디어센터 버전이던 무관.. 심지어 애플 부트캠프까지! 단 가상PC로는 안됨) 멀티코어 컴퓨터(인텔, AMD 무관, 애플 맥북도 상관없음. HT기술을 이용한 '논리적' 듀얼코어도 상관없음)