[Java] BufferedReader in=new BufferedReader(new InputStre..

gyxor의 이미지

BufferedReader in = new BufferedReader(new InputStreamReader(System.in));

위 문장은 in.readLine(); 과 같은 함수를 사용가능하게 해주는거 같은데요..
문법구조가 잘 파악이 안됩니다.
자바에서는 모든 것이 객체화 되어있다는거 같은데요..

BufferedReader in 은 객체로 부터 인스턴스를 생성한것이고..
new 가 c++에서의 new와 같은 것이라면..
그 안의 내용은 BufferedReader 의 또다른 인스턴스 가 와야 할거 같은데요..
ex>
int b;
int a = new int (b);
이것처럼요..

안에 또 다시 new연산자가 들어가니까..
c++ 에서의 지식만으로는 이해하기가 어렵습니다.

문법적인 구조를 설명해주시면 감사하겠습니다.

kwon37xi의 이미지

먼저 말씀드리고 싶은것이요..
님의 자바 관련 질문 몇개를 봤는데요, 모두 일반적인 자바 책에 아주 잘 설명되어 있는 기초적인 것들입니다.
책을 한번은 완독해보시는게 더 빠른 답을 얻을 수 있을 것 같습니다.

gyxor wrote:
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));

먼저, 자바에서는 이름없는 객체의 생성이 가능합니다.
단지,
new ClassName();
위와 같이해도 상관없습니다.
"new ClassName()" 을 하는 순간 자바에서는 ClassName 클래스의 생성자가 실행됩니다. 그리고 메모리 공간 어딘가에 ClassName의 객체가 이름도 없이 홀로 존재하는 거죠...
C++과 마찬가지로 생성자에는 여러 인자가 전달 될 수 있습니다.
그러니까 new ClassName(new AnotherClassName()); 하게되면, ClassName의 생성자에 AnotherClassName 클래스의 이름없는 객체가 인자로 들어가게 됩니다.
그리고는 ClassName 객체가 생성되는 것이죠.
InputStreamReader클래스의 생성자는 InputStream 클래스의 객체(System.in)을 인자로 받을 수 있고, BufferedReader 클래스의 생성자는 InputStreamReader의 객체를 인자로 받을 수 있습니다.

그래서 저와 같은 일이 가능해 집니다.
C++에서도 마찬가지 인걸로 아는데.. 아닌가요? 기억이 안나네요... ㅜㅜ

fender의 이미지

부연설명을 드리자면 기본적인 데코레이터 패턴이 적용된 예입니다. 즉, BufferedReader나 InputStreamReader나 모두 java.io.Reader를 상속 받기 때문에 사용하는 입장에서는 동일한 인터페이스로 접근할 수 있습니다. 즉,

Reader reader = new BufferedReader(new InputStreamReader(in));

Reader reader = new InputStreamReader(in);

이 두 가지는 모두 Reader 타입으로 받아서 사용할 수 있습니다. BufferedReader는 원래의 InputStreamReader를 감싸는 구조로 InputStreamReader 본래의 기능을 바꾸지 않고 이를 꾸며(decorate)주는, 즉 버퍼를 사용해서 읽어들여서 성능을 높여주는 역할을 추가하는 기능을 할 뿐입니다.

자바 쪽에서는 io관련 클래스들이나 스윙의 Border 관련 클래스들에서 이러한 패턴을 적용한 예를 찾아볼 수 있습니다.

그럼~

----------------------------
[서명] 그놈 한국 사용자 모임 - 그놈에 대한 모든 것! - 게시판, IRC, 위키, 갤러리 등등...

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.