Skip to content

Commit

Permalink
13.5. 자바 문서를 보는 법 - 상속
Browse files Browse the repository at this point in the history
  • Loading branch information
egoing committed Oct 2, 2019
1 parent 136c673 commit 5fdbd43
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Programming/InstanceApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ public static void main(String[] args) throws IOException{
PrintWriter p2 = new PrintWriter("result2.txt");
p2.write("Hello 2");
p2.close();
System.out.println(p1.toString());
p2.toString();
p2.write("Hello 2");


// PrintWriter.write("result1.txt", "Hello 1");
// PrintWriter.write("result2.txt", "Hello 2");
Expand Down

0 comments on commit 5fdbd43

Please sign in to comment.