Successfully reported this slideshow.
We use your LinkedIn profile and activity data to personalize ads and to show you more relevant ads. You can change your ad preferences anytime.

Java programming language

780 views

Published on

201507 KOSA 청년취업아카데미 수업자료
(Java Programming 기초)

Published in: Software
  • ACCESS that WEBSITE Over for All Ebooks (Unlimited) ......................................................................................................................... DOWNLOAD FULL PDF EBOOK here { http://bit.ly/2m6jJ5M } ......................................................................................................................... DOWNLOAD FULL EPUB Ebook here { http://bit.ly/2m6jJ5M } ......................................................................................................................... Download Full PDF EBOOK here { http://bit.ly/2m6jJ5M } ......................................................................................................................... Download EPUB Ebook here { http://bit.ly/2m6jJ5M }
       Reply 
    Are you sure you want to  Yes  No
    Your message goes here
  • accessibility Books Library allowing access to top content, including thousands of title from favorite author, plus the ability to read or download a huge selection of books for your pc or smartphone within minutes ,Download or read Ebooks here ... ......................................................................................................................... Download FULL PDF EBOOK here { http://bit.ly/2m6jJ5M }
       Reply 
    Are you sure you want to  Yes  No
    Your message goes here
  • If you want to download or read this book, copy link or url below in the New tab ......................................................................................................................... DOWNLOAD FULL PDF EBOOK here { http://bit.ly/2m6jJ5M } ......................................................................................................................... Download EPUB Ebook here { http://bit.ly/2m6jJ5M } .........................................................................................................................
       Reply 
    Are you sure you want to  Yes  No
    Your message goes here
  • accessibility Books Library allowing access to top content, including thousands of title from favorite author, plus the ability to read or download a huge selection of books for your pc or smartphone within minutes ,Download or read Ebooks here ... ......................................................................................................................... Download FULL PDF EBOOK here { http://bit.ly/2m6jJ5M }
       Reply 
    Are you sure you want to  Yes  No
    Your message goes here
  • Download or read that Ebooks here ... ......................................................................................................................... DOWNLOAD FULL PDF EBOOK here { http://bit.ly/2m6jJ5M } ......................................................................................................................... Download EPUB Ebook here { http://bit.ly/2m6jJ5M } ......................................................................................................................... Download Doc Ebook here { http://bit.ly/2m6jJ5M } ......................................................................................................................... .........................................................................................................................
       Reply 
    Are you sure you want to  Yes  No
    Your message goes here

Java programming language

  1. 1. Java Programming http://bit.ly/java201507
  2. 2. Java Programming Language, Java SE 6 Text Book
  3. 3. The Java Programming Language Basics More Objective-Oriented Programming Exceptions, Cellections, and I/O Developing Graphical User Interfaces Advanced Java Programming Getting Started OOP Keywords, Types Syntax, Controls Arrays Class Design Advanced Class Features Exceptions and Assertions Collections and Generics I/O Fundamentals Console I/O and File I/O GUI Event Handling GUI-Based Application Threads Networking
  4. 4. Getting Started
  5. 5. Java History 1991 - Project Oak 1995 - Alpha and Beta 1996 - JDK 1.0 1997 - JDK 1.1 1998 - J2SE 1.2 2000 - J2SE 1.3 2002 - J2SE 1.4 2004 - J2SE 5.0 2006 - Java SE 6 2011 - Java SE 7 2014 - Java SE 8
  6. 6. Java Technology ● Java is a programming language ● Similar in syntax to C++ ● Objected-Oriented Programming Language ● The Java Virtual Machine ● Garbage Collection ● The Java Runtime Environment
  7. 7. JRE
  8. 8. GC
  9. 9. Hello World
  10. 10. Write Once, Run Anywhere
  11. 11. Object-Oriented Programming
  12. 12. Object Class Instance Terms
  13. 13. Encapsulation Inheritance Polymorphism OOP
  14. 14. UML Airport has a Aircraft Jet is a Aircraft Helicopter is a Aircraft Car has a Tire Car use a GasStation Class Diagram
  15. 15. UML Sequence Diagram
  16. 16. Syntax...
  17. 17. .java Package Imports Class Extends Implements { Fields Constructor Methods }
  18. 18. Keywords
  19. 19. Primitive and Object Type boolean char byte short int long float double and Others.. Reference Type
  20. 20. Writing Sample package com.kosa.exmaple; import System.out; class SayHello { private String name; public SayHello() { this.name= “”; } public SayHello(String name) { this.name= name; } public void sayHi() { System.out.println(“Hello “+name); } }

×