intTypePromotion=1
zunia.vn Tuyển sinh 2024 dành cho Gen-Z zunia.vn zunia.vn
ADSENSE

Bài giảng Phát triển ứng dụng nguồn mở: Bài 4 - Đoàn Thiện Ngân

Chia sẻ: 5A4F5AFSDG 5A4F5AFSDG | Ngày: | Loại File: PDF | Số trang:34

63
lượt xem
5
download
 
  Download Vui lòng tải xuống để xem tài liệu đầy đủ

Bài 4 cung cấp kiến thức về Core Java. Các nội dung chính trong bài giảng này gồm có: Tổng quan về Java, so sánh Java và C++, đặc trưng của Java, nguyên lý hướng đối tượng của Java. Mời các bạn cùng tham khảo để biết thêm các nội dung chi tiết.

Chủ đề:
Lưu

Nội dung Text: Bài giảng Phát triển ứng dụng nguồn mở: Bài 4 - Đoàn Thiện Ngân

  1. Bài 4 : Core Java GV: ĐOÀN THIỆN NGÂN Đoàn Thiện Ngân Bài 4 - 1/34
  2. Nội dung • Tổng quan về Java • So sánh Java và C++ • Đặc trưng của Java • Java platform • Nguyên lý hướng đối tượng của Java Đoàn Thiện Ngân Bài 4 - 2/34
  3. Tài liệu tham khảo 1. JAVA™ FOR PROGRAMMERS, 2ND EDITION, DEITEL® DEVELOPER SERIES 2. NetBeans IDE 7 Cookbook, 2011, Packt Publishing 3. Java Tutorial, http://docs.oracle.com/javase/tutorial/ 4. Netbeans Tutorial, http://netbeans.org/kb/trails/matisse.html Đoàn Thiện Ngân Bài 4 - 3/34
  4. Tổng quan về Java • Java có cấu trúc tương tự C++ • Java đơn giản hơn • Java là một ngôn ngữ lập trình rất mạnh • Java là một công nghệ mới xây dựng ứng dụng trên nhiều nền tảng khác nhau http://www.oracle.com/technetwork /java/index-jsp-135888.html Đoàn Thiện Ngân Bài 4 - 4/34
  5. Java và C++ C++ Java Object-Oriented Optional Obligatory Variables Optional doesn’t exist Globals Function Multi-Platform Soure Code Soure Code (sometime) bytecode Memory Manual Automatic Administration (Gababe Collector) Multi-Thread No Yes Multi-Inheritance Yes Đoàn Thiện Ngân No Bài 4 - 5/34
  6. Đặc trưng của Java • Hướng đối tượng • Đơn giản • Phân tán • Thông dịch trung gian (bytecode) • An toàn - Bảo mật • Cấu trúc độc lập • Dễ thích ứng • Kiểu dữ liệu mạnh • Xử lý đa luồng (multi-thread) Đoàn Thiện Ngân Bài 4 - 6/34
  7. Đặc trưng của Java • Đặc trưng cơ bản của Java từ C và C++ • Java được dùng nhiều trong ứng dụng: – di động – desktop – web • JVM (Java Virtual Machine) là máy ảo Java để chạy chương trình Java dạng bytecode (JRE - Java Runtime Environment) • JDK (Java Development Kit) là bộ công cụ để biên dịch (bytecode), dò lỗi và thực thi chương trình Java Đoàn Thiện Ngân Bài 4 - 7/34
  8. Đoàn Thiện Ngân Bài 4 - 8/34
  9. • HelloWorldApp.java • javac HelloWorldApp.java • HelloWorldApp.class • java HelloWorldApp Đoàn Thiện Ngân Bài 4 - 9/34
  10. What Can Java Technology Do? The general-purpose, high-level Java programming language is a powerful software platform. Every full implementation of the Java platform gives you the following features. • Development Tools: The development tools provide everything you'll need for compiling, running, monitoring, debugging, and documenting your applications. As a new developer, the main tools you'll be using are the javac compiler, the java launcher, and the javadoc documentation tool. Đoàn Thiện Ngân Bài 4 - 10/34
  11. What Can Java Technology Do? • Application Programming Interface (API): The API provides the core functionality of the Java programming language. It offers a wide array of useful classes ready for use in your own applications. It spans everything from basic objects, to networking and security, to XML generation and database access, and more. The core API is very large; to get an overview of what it contains, consult the Java SE Development Kit (JDKTM) documentation. Đoàn Thiện Ngân Bài 4 - 11/34
  12. What Can Java Technology Do? • Deployment Technologies: The JDK software provides standard mechanisms such as the Java Web Start software and Java Plug-In software for deploying your applications to end users. • User Interface Toolkits: The Swing and Java 2D toolkits make it possible to create sophisticated Graphical User Interfaces (GUIs). Đoàn Thiện Ngân Bài 4 - 12/34
  13. What Can Java Technology Do? • Integration Libraries: Integration libraries such as the Java IDL API, JDBCTM API, Java Naming and Directory InterfaceTM ("J.N.D.I.") API, Java RMI, and Java Remote Method Invocation over Internet Inter-ORB Protocol Technology (Java RMI-IIOP Technology) enable database access and manipulation of remote objects. Đoàn Thiện Ngân Bài 4 - 13/34
  14. How Will Java Technology Change My Life? We can't promise you fame, fortune, or even a job if you learn the Java programming language. Still, it is likely to make your programs better and requires less effort than other languages. We believe that Java will help you: • Get started quickly: Although the Java programming language is a powerful object- oriented language, it's easy to learn, especially for programmers already familiar with C or C++. • Write less code: Comparisons of program metrics (class counts, method counts, and so on) suggest that a program written in the Java programming language can be four times smaller than the same program written in C++. Đoàn Thiện Ngân Bài 4 - 14/34
  15. How Will Java Technology Change My Life? • Write better code: automatic garbage collection helps you avoid memory leaks. Its object orientation, its JavaBeansTM component architecture, and its wide- ranging, easily extendible API let you reuse existing, tested code and introduce fewer bugs. • Develop programs more quickly: is simpler than C++, and as such, your development time could be up to twice as fast when writing in it. Your programs will also require fewer lines of code. Đoàn Thiện Ngân Bài 4 - 15/34
  16. How Will Java Technology Change My Life? • Avoid platform dependencies: You can keep your program portable by avoiding the use of libraries written in other languages. • Write once, run anywhere: Because applications written in the Java programming language are compiled into machine-independent bytecodes, they run consistently on any Java platform. Đoàn Thiện Ngân Bài 4 - 16/34
  17. How Will Java Technology Change My Life? • Distribute software more easily: With Java Web Start software, users will be able to launch your applications with a single click of the mouse. An automatic version check at startup ensures that users are always up to date with the latest version of your software. If an update is available, the Java Web Start software will automatically update their installation. Đoàn Thiện Ngân Bài 4 - 17/34
  18. JAVA Editors • Netbeans • Eclipse • JBuilder • JCreator • JDeveloper • KDeveloper • … Đoàn Thiện Ngân Bài 4 - 18/34
  19. The "Hello World!" Application • JDK: Java Development Kit http://www.oracle.com/technetwork/java/j avase/downloads/index.html • Java Compiler: javac • Java Runtime Machine: – java – javaw • JRE: Java Runtime Machine – jre – java, javaw Đoàn Thiện Ngân Bài 4 - 19/34
  20. The "Hello World!" Application • NetBeans IDE • HelloWorldApp.java public class HelloWorldApp { public static void main(String[] args) { System.out.println("Hello World!\n"); } } • Biên dịch: javac HelloWorldApp.java • Chạy thử: java HelloWorldApp • Netbeans: Build (F11, Shift+F11); Run (F6) • Chú ý: Tên class trùng tên tập tin java Đoàn Thiện Ngân Bài 4 - 20/34
ADSENSE

CÓ THỂ BẠN MUỐN DOWNLOAD

 

Đồng bộ tài khoản
6=>0