수업소개
나의 클래스, 나의 인스턴스를 만들기 전에 남의 클래스, 남의 인스턴스를 사용하는 법을 먼저 알아봅시다.
강의
소스코드
OthersOOP.java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | import java.io.FileWriter; import java.io.IOException; public class OthersOOP { public static void main(String[] args) throws IOException { // class : System, Math, FileWriter // instance : f1, f2 System.out.println(Math.PI); System.out.println(Math.floor( 1.8 )); System.out.println(Math.ceil( 1.8 )); FileWriter f1 = new FileWriter( "data.txt" ); f1.write( "Hello" ); f1.write( " Java" ); FileWriter f2 = new FileWriter( "data2.txt" ); f2.write( "Hello" ); f2.write( " Java2" ); f2.close(); f1.write( "!!!" ); f1.close(); } } |