본문 바로가기

Java 배우기145

Java SE at a Glance Java Platform, Standard Edition (Java SE)을 이용하여, 오늘날의 요구되는 임베드된 환경은 물론 desktops과 servers 위에서 자바 애플리케이션을 개발하고 설치할 수 있습니다. 자바는 오늘날의 애플리케이션이 요구하는 rich user interface, performance, versatility, portability, security를 제공합니다.Java Platform, Standard Edition (Java SE) lets you develop and deploy Java applications ondesktops and servers, as well as in today's demanding embedded environments. Java offers .. 2016. 5. 31.
InputStream java.ioClass InputStreamjava.lang.Objectjava.io.InputStreamAll Implemented Interfaces:Closeable, AutoCloseableDirect Known Subclasses:AudioInputStream, ByteArrayInputStream, FileInputStream, FilterInputStream, InputStream, ObjectInputStream, PipedInputStream, SequenceInputStream, StringBufferInputStream public abstract class InputStream extends Object implements Closeable이 추상 클래스는 바이트의 input str.. 2016. 3. 7.
Lesson: Exceptions Lesson: Exceptions자바 프로그래밍 언어는 오류 및 기타 특별한 이벤트를 처리하기 위하여 exceptions를 사용합니다. 이 단원은 exceptions를 언제, 어떻게 사용하는지에 대해 설명합니다.The Java programming language uses exceptions to handle errors and other exceptional events. This lesson describes when and how to use exceptions. What Is an Exception?exception은 지침의 정상적인 흐름을 방해하는, 프로그램 실행 중에 발생되는 이벤트 입니다 An exception is an event that occurs during the execution .. 2016. 1. 29.
Trail: Essential Classes 트레일: 핵심 클래스들 트레일: 핵심 클래스들 Trail: Essential Classes 이 트레일은 대부분의 프로그래머에게 핵심적인 자바 플랫폼을 논의 합니다. This trail discusses classes from the Java platform that are essential to most programmers. Exceptions는 exception 메커니즘과 오류 및 기타 예외 조건을 처리할 때 exception 메커니즘을 사용하는 방법을 설명합니다.이 단원은 exception이란 무엇인지, throw와 catch exceptions하는 방법, 일단 exception이 발생되면 exception으로 무엇을 하는지, 그리고 exception class 계층구조의 사용 방법을 서술하고 있습니다. Exception.. 2016. 1. 29.
Learning the Java Language: End of Trail 자바언어 배우기: 트레일의 끝 자바언어 배우기: 트레일의 끝 Learning the Java Language: End of Trail "자바 언어 배우기" 트레일의 마지막에 도달했습니다. 이 트레일에 대한 의견이나 제안은 피드백 페이지를 통하여 하십시오. You have reached the end of the "Learning the Java Language" trail.If you have comments or suggestions about this trail, use our feedback page to tell us about it. 핵심 클래스들: String, System, Thread을 포함한 JDK APIs안에 있는 많이-사용되는 클래스들 그리고 java.io안의 클래스들을 배우십시오. Essential Classes.. 2016. 1. 24.
Questions and Exercises: Creating and Using Packages Questions and Exercises: Creating and Using PackagesQuestionsAssume you have written some classes. Belatedly, you decide they should be split into three packages, as listed in the following table. Furthermore, assume the classes are currently in the default package (they have no package statements). Destination PackagesPackage NameClass Namemygame.serverServermygame.sharedUtilitiesmygame.clientC.. 2016. 1. 24.