[www.ed2k.online]下載基地為您提供軟件、遊戲、圖書、教育等各種資源的ED2K電驢共享下載和MAGNET磁力鏈接下載。
設為首頁
加入收藏
首頁 圖書資源 軟件資源 游戲資源 教育資源 其他資源
 電驢下載基地 >> 其他资源 >> 電腦基礎 >> 《Java 基本教程》(Lynda.com Java Essential Training)[壓縮包]
《Java 基本教程》(Lynda.com Java Essential Training)[壓縮包]
下載分級 其他资源
資源類別 電腦基礎
發布時間 2017/7/13
大       小 -
《Java 基本教程》(Lynda.com Java Essential Training)[壓縮包] 簡介: 中文名 : Java 基本教程 英文名 : Lynda.com Java Essential Training 資源格式 : 壓縮包 主講人 : David Gassner 發行日期 : 2011年12月14日 地區 : 美國 對白語言 : 英語 文字語言 : 英文 簡介 : 語言:英語 網址:http://www.lynda.com/Java-tutorials/E
電驢資源下載/磁力鏈接資源下載:
全選
"《Java 基本教程》(Lynda.com Java Essential Training)[壓縮包]"介紹
中文名: Java 基本教程
英文名: Lynda.com Java Essential Training
資源格式: 壓縮包
主講人: David Gassner
發行日期: 2011年12月14日
地區: 美國
對白語言: 英語
文字語言: 英文
簡介:

語言:英語
網址:http://www.lynda.com/Java-tutorials/Essential-Training/86005-2.html
類別:教程
由Lynda出品的Java基本教程。
教學時長:7小時17分鐘,
主講:David Gassner
教程所使用的軟件:Java, Eclipse
Java是一種可以撰寫跨平台應用軟件的面向對象的程序設計語言,是由Sun Microsystems公司於1995年5月推出的Java程序設計語言和Java平台(即JavaSE, JavaEE, JavaME)的總稱。Java 技術具有卓越的通用性、高效性、平台移植性和安全性,廣泛應用於個人PC、數據中心、游戲控制台、科學超級計算機、移動電話和互聯網,同時擁有全球最大的開發者專業社群。在全球雲計算和移動互聯網的產業環境下,Java更具備了顯著優勢和廣闊前景。
作者David Gassner探討了Java SE標准版, Android設備,企業級服務器的應用程序,和構建移動應用程序所使用的語言。本課程講解了如何安裝Java和Eclipse IDE ,並深入了解編程的詳情。本課程還介紹了Java的基本原則,從簡單的變量分配值,解釋了 Java 中的基本要素,讀取和寫入文本文件;和面向實施對象編程的概念。
Join author David Gassner as he explores Java SE (Standard Edition), the language used to build mobile apps for Android devices, enterprise server applications, and more. This course demonstrates how to install both Java and the Eclipse IDE and dives into the particulars of programming. The course also explains the fundamentals of Java, from creating simple variables, assigning values, and declaring methods to working with strings, arrays, and subclasses; reading and writing to text files; and implementing object oriented programming concepts.
Topics include:
Understanding the history and principles of Java
Installing Eclipse and Java
Compiling and running from the command line
Managing memory and performing garbage collection
Declaring and initializing variables
Writing conditional code
Building and parsing strings
Debugging and exception handling
Using simple arrays
Creating custom classes
Working with encapsulation, inheritance, and polymorphism
Managing files
Documenting code with Javadocs

資源更新列表
http://www.VeryCD.com/i/5190747/create/fol...postTime

目錄:
Introduction
10m 8s
Welcome
1m 3s
Is this course for you?
5m 35s
Using the exercise files
3m 30s
1. What Is Java?
31m 24s
The history of Java
5m 19s
Understanding the principles of Java
8m 28s
Java compilation and syntax
8m 54s
Choosing a development environment
8m 43s
2. Installing the Software
19m 5s
Installing Java on Windows
6m 42s
Installing Eclipse on Windows
3m 19s
Exploring Java on Mac OS X Leopard and Snow Leopard
2m 27s
Installing Java on Mac OS X Lion
3m 27s
Installing Eclipse on Mac OS X
3m 10s
3. Getting Started
46m 10s
Creating a Hello World application
11m 7s
Exploring the Eclipse IDE
8m 55s
Compiling and running from the command line
8m 2s
Passing arguments to the application
8m 17s
Using the Java API documentation
4m 5s
Memory management and garbage collection
5m 44s
4. Using Primitive Data Types
58m 57s
Everything is an object
5m 59s
Declaring and initializing variables
9m 15s
Working with numbers
8m 32s
Converting numeric values
6m 40s
Understanding operators
7m 58s
Working with character values
5m 14s
Working with boolean values
5m 13s
Outputting primitive values as strings
5m 33s
Creating a simple calculator application
4m 33s
5. Exploring Syntax and Flow
53m 40s
Writing conditional code
5m 35s
Using the switch statement
8m 50s
Repeating code blocks with loops
7m 35s
Creating reusable code with methods
6m 31s
Declaring methods with arguments
5m 41s
Overloading method names with different signatures
5m 53s
Passing arguments by reference or by value
5m 35s
Creating a more complex calculator application
8m 0s
6. Working with Complex Objects
20m 30s
Using the String class
5m 44s
Building strings with StringBuilder
3m 34s
Parsing string values
3m 19s
Working with date values
7m 53s
7. Exception Handling and Debugging
20m 44s
Understanding compile-time vs. runtime errors
4m 5s
Handling exceptions with try/catch
4m 55s
Throwing exceptions in methods
2m 50s
Using the debugger
8m 54s
8. Using Data Collections
32m 22s
Using simple arrays
4m 47s
Using two-dimensional arrays
6m 17s
Managing resizable arrays with ArrayList
7m 14s
Managing unordered data with HashMap
6m 5s
Looping through collections with iterators
7m 59s
9. Creating Custom Classes
52m 2s
Understanding encapsulation
5m 59s
Creating and instantiating custom classes
8m 8s
Organizing classes with packages
6m 47s
Creating and using instance methods
6m 52s
Storing data in instance variables
6m 56s
Using constructor methods
5m 40s
Managing instance data with getter and setter methods
8m 26s
Using class variables and Enum classes
3m 14s
10. Working with Inheritance and Polymorphism
41m 15s
Understanding inheritance and polymorphism
9m 12s
Extending custom classes
9m 1s
Overriding superclass methods
3m 8s
Casting subclass objects
5m 3s
Understanding interfaces and implementing classes
4m 2s
Creating your own interfaces
4m 14s
Using abstract classes and methods
6m 35s
11. Working with Files
32m 17s
Managing files with the core class library
7m 46s
Managing files with Apache Commons FileUtils
7m 32s
Reading a text file from a networked resource
7m 52s
Parsing an XML file with DOM
9m 7s
12. Preparing an Application for Deployment
17m 39s
Creating your own JAR files
4m 54s
Understanding the classpath
5m 2s
Documenting code with Javadoc
7m 43s
Conclusion
47s
Goodbye
47s 
相關資源:

免責聲明:本網站內容收集於互聯網,本站不承擔任何由於內容的合法性及健康性所引起的爭議和法律責任。如果侵犯了你的權益,請通知我們,我們會及時刪除相關內容,謝謝合作! 聯系信箱:[email protected]

Copyright © 電驢下載基地 All Rights Reserved