1 / 17

Introduction to Java

Introduction to Java. Kumar Harshit. Objectives ( 목적지 ). At the end of the lesson, the student should be able to: ● Describe the features of Java technology such as the Java virtual ( 실질상의 ) machine, garbage ( 쓰레기 ) collection and code security.

terah
Télécharger la présentation

Introduction to Java

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Introduction to Java Kumar Harshit

  2. Objectives (목적지) At the end of the lesson, the student should be able to: ● Describe the features of Java technology such as the Java virtual (실질상의) machine, garbage (쓰레기) collection and code security. • Describe the different phases (양상) of a Java program.

  3. Java Background: History • Java – was created in 1991 – by James Gosling et al. of Sun Microsystems. – Initially called Oak, in honor of the tree outside Gosling's window, its name was changed to Java because there was already a language called Oak.

  4. Java Background: History • Java – The original motivation (자극, 유도) for Java ● The need for platform independent language that could be embedded (파묻다 ) in various consumer electronic products like toasters and refrigerators. – One of the first projects developed using Java ● a personal hand-held remote control named Star 7. – At about the same time, the World Wide Web and the Internet were gaining popularity. Gosling et. al. realized that Java could be used for Internet programming.

  5. Phases of a Java Program • The following figure describes the process of compiling and executing a Java program

  6. Phases of a Java Program

  7. Java Background:What is Java Technology? • The Java technology is: – A programming language – A development environment – An application environment – A deployment (전개, 배치 ) environment

  8. Java Technology:Programming Language • As a programming language, Java can create all kinds of applications that you could create using any conventional programming language.

  9. Java Technology:A Development Environment • As a development environment, Java technology provides you with a large suite (한 조 ) of tools: –A compiler (javac) – An interpreter (java) – A documentation generator (javadoc) – A class file packaging tool and so on...

  10. Java Technology:An Application and Runtime Environment • Java technology applications are general-purpose (만능의 ) programs that run on any machine where the Java runtime environment (JRE) is installed. • There are two main deployment (전개, 배치) environments: 1. The JRE supplied by the Java 2 Software Development Kit (SDK) contains the complete set of class files for all the Java technology packages, which includes basic language classes, GUI component classes, and so on. 2. The other main deployment environment is on your web browser. Most commercial browsers supply a Java technology interpreter and runtime environment.

  11. Java Features • Some features of Java: – The Java Virtual Machine – Garbage Collection – Code Security

  12. Java Features:The Java Virtual Machine • Java Virtual Machine (JVM) – An imaginary (상상의 ) machine that is implemented by emulating (…와 경쟁하다) software on a real Machine – provides the hardware platform specifications to which you compile all Java technology code • Bytecode – a special machine language that can be understood by the Java Virtual Machine (JVM) – independent of any particular computer hardware, so any computer with a Java interpreter can execute the compiled Java program, no matter what type of computer the program was compiled on.

  13. Java Features:Garbage Collection • Garbage collection thread – responsible for freeing (해방시키다) any memory that can be freed. This happens automatically during the lifetime of the Java program. – programmer is freed from the burden of having to de-allocate (해방시키다) that memory themselves.

  14. Java Features:Code Security • Code security is attained (성취하다) in Java through the implementation (충족) of its Java Runtime Environment (JRE). • JRE – Runs code compiled for a JVM – Performs (성취하다) class loading (through the class loader), More about this in the next slide. – Code verification (확인하다) (through the bytecode verifier) and – Finally code execution

  15. Java Features:Code Security • Class Loader – Responsible for loading all classes needed for the Java program. – Adds security by separating the namespaces for the classes of the local file system from those that are imported from network sources. – After loading all the classes, the memory layout of the executable is then determined(결심시키다). This adds protection against unauthorized (자기식의) access (이용) to restricted (제약된) areas of the code since the memory layout is determined during runtime.

  16. Java Features:Code Security • Bytecode verifier – Tests the format (판형) of the code fragments (부서진 조각). – And checks the code fragments for illegal (불법) code that can violate (범하다) access rights (파일 등에의) to objects.

  17. Summary • Java Background – History – Java Technology • A programming language, development environment, application environment and deployment environment – Java Features • Java Virtual machine, garbage collection and code security • Phases of a Java Program – Write, compile, run

More Related