雙語版Java程序設(shè)計

出版時間:2012-6  出版社:電子工業(yè)出版社  作者:何月順 編  頁數(shù):339  字數(shù):749000  

內(nèi)容概要

  本書是一種良好的跨平臺、可移植性好、安全性高、純面向?qū)ο蟮某绦蛟O(shè)計語言,是目前軟件開發(fā)的主流編程語言之一。本書由淺入深、循序漸進地介紹了Java語言的發(fā)展、編程環(huán)境、開發(fā)工具、基本語法、面向?qū)ο缶幊獭惓L幚?、線程、輸入輸出流、GUI編程、網(wǎng)絡(luò)編程、數(shù)據(jù)庫編程等內(nèi)容,并結(jié)合大量的實例進行講解。
  《國外計算機科學教材系列:Java程序設(shè)計(雙語版)》是國內(nèi)首次出版的中英文對照混排式雙語版Java程序設(shè)計教材。本書內(nèi)容注重理論與實踐結(jié)合,參考了Java在線官方文檔及國內(nèi)外優(yōu)秀的Java程序設(shè)計教材的知識體系。針對中國學生英文水平及實際教學狀況,做了針對性的編寫,并對重要的、難以理解的內(nèi)容進行了中文解釋,方便了讀者對英文的理解。本書配有電子課件、案例分析、實驗指導等教學資源,可登錄電子工業(yè)出版社華信教育資源網(wǎng)(www。hxedu。com。cn),免費注冊、下載。
  通過本書的學習,可使學生了解Java語言的發(fā)展,理解Java面向?qū)ο缶幊痰幕舅枷?,掌握Java語言的基本語法、面向?qū)ο蟪绦蛟O(shè)計的實現(xiàn)思想、多線程編程、網(wǎng)絡(luò)程序開發(fā)及數(shù)據(jù)庫訪問等方面的基本技術(shù)。

書籍目錄

Chapter 1 Genesis of Java
Java概述
1.1 Introduction
Java簡介
1.2 Java Development Today
Java發(fā)展歷史
1.3 Evolution of 'C' Based Programming Languages
C系列語言發(fā)展
1.4 Main Features of Java Programming Language
Java語言的主要特性
1.4.1 Portability
輕量級
1.4.2 Simple
簡單
1.4.3 Robust
健壯
1.4.4 Multithread
多線程
1.4.5 Architecture-Neutral
平臺無關(guān)
1.4.6 Interpreted and High Performance
解釋性和高效
1.4.7 Distributed
分布式
1.4.8 Dynamic
動態(tài)
1.4.9 Security
安全
1.5 Java Applet
Java Applet小應(yīng)用程序
1.6 Exercise for you
課后習題
Chapter 2 Java Overview
Java總覽
2.1 Concepts of OOP
面向?qū)ο蟪绦蛟O(shè)計
2.1.1 Class

2.1.2 Object
對象
2.1.3 Encapsulation
封裝
2.1.4 Inheritance
繼承
2.1.5 Polymorphism
多態(tài)
2.2 More Details on Object-Oriented Programming
面向?qū)ο蟪绦蛟O(shè)計具體實例
2.2.1 Encapsulation of Car
Car類封裝
2.2.2 Inheritance of Car
Car類繼承
2.2.3 Polymorphism of Car
Car類多態(tài)
2.2.4 Conclusion on Object-Oriented Programming
面向?qū)ο蟪绦蛟O(shè)計小結(jié)
2.3 Write the First Java Program
編寫第一個Java程序
2.4 How to Run the First Java Program
運行第一個Java程序
2.5 Lexical Elements
語法規(guī)則
2.6 White Space
空白符
2.7 Comments
注解
2.7.1 Single Line
單行注解
2.7.2 Multi-line
多行注解
2.7.3 Javadoc
Javadoc注解
2.8 Keywords
關(guān)鍵字
2.9 Identifiers
標志符
2.10 Java Class Library
Java類庫
2.11 Sample Program Practice
程序?qū)嵗?br />2.12 Exercise for you
課后習題
Chapter 3 Data Types
數(shù)據(jù)類型
3.1 Data Types Overview
數(shù)據(jù)類型概述
3.2 Primitive Types
基本數(shù)據(jù)類型
3.3 Casting
類型轉(zhuǎn)換
3.3.1 Widening
類型擴展
3.3.2 Narrowing
類型收縮
3.4 Reference Types
引用類型
3.5 Summary
基本類型匯總
3.6 Complex Data Types
復合數(shù)據(jù)類型
3.6.1 Reference Data Types
引用數(shù)據(jù)類型
3.6.2 Class Types
類類型
3.6.3 Interface Types
接口類型
3.7 Composite Data Types
構(gòu)造復合數(shù)據(jù)類型
3.7.1 Initializing Composite Data Types
復合數(shù)據(jù)類型數(shù)據(jù)初始化
3.7.2 Predefined Composite Data Types
預定義復合數(shù)據(jù)類型
3.8 Casting Variables to a Different Type
不同數(shù)據(jù)類型轉(zhuǎn)換
3.8.1 Automatic Casting
自動轉(zhuǎn)換
3.8.2 Explicit Casting
顯式轉(zhuǎn)換
3.9 Java's Floating Point Types
浮點數(shù)據(jù)
3.9.1 Primitive Floating Point Types
基本浮點類型
3.9.2 Integer Operators
整型運算符
3.9.3 Input and Output of Floating Point Values
輸入輸出浮點數(shù)據(jù)
3.9.4 Casting of Floating Point to and from Integer Values, and
Floating Point Literals
整型數(shù)據(jù)和浮點型字符轉(zhuǎn)換為浮點數(shù)據(jù)
3.9.5 Floating Point Operations in the Standard Packages
系統(tǒng)包中的浮點運算
3.9.6 The Float Class
Float類
3.10 Variable
變量
3.10.1 Declaring a Variable
變量聲明
3.10.2 Difference between Zero and '0'-Unicode Characters
區(qū)分數(shù)字0和字符
3.10.3 Initialization of the Variable
變量初始化
3.10.4 Error Checking by the Compiler
編譯錯誤
3.10.5 Using the Cast Operator
類型轉(zhuǎn)換符的使用
3.10.6 Why Declare the Variables as Type Int?
變量聲明為整型
3.10.7 Shortcut Declaring Variables of the Same Type
同類型變量的聲明
3.10.8 Assigning Values to Variables
變量賦值
3.10.9 A Shortcut, Declare and Assign at the Same Time
變量同時聲明與賦值
3.11 Record
記錄
3.12 Sample Program Practice
程序?qū)嵗?br />3.13 Exercise for you
課后習題
……

編輯推薦

  《國外計算機科學教材系列:Java程序設(shè)計(雙語版)》貫徹理論與實踐相結(jié)合的原則,深入淺出,配以大量實例分析,同時作為中英文對照教材,非常適合高校進行“Java程序設(shè)計”課程的雙語教學?!秶庥嬎銠C科學教材系列:Java程序設(shè)計(雙語版)》既可作為高等學校Java程序設(shè)計或?qū)I(yè)英語課程的教材,也可供從事Java程序開發(fā)的從業(yè)人員學習、參考。

圖書封面

評論、評分、閱讀與下載


    雙語版Java程序設(shè)計 PDF格式下載


用戶評論 (總計1條)

 
 

  •   還不錯,很實用,對于理解很有幫助的,超贊的
 

250萬本中文圖書簡介、評論、評分,PDF格式免費下載。 第一圖書網(wǎng) 手機版

京ICP備13047387號-7