注冊(cè) | 登錄讀書(shū)好,好讀書(shū),讀好書(shū)!
讀書(shū)網(wǎng)-DuShu.com
當(dāng)前位置: 首頁(yè)出版圖書(shū)科學(xué)技術(shù)計(jì)算機(jī)/網(wǎng)絡(luò)軟件與程序設(shè)計(jì)JAVA及其相關(guān)Java語(yǔ)言藝術(shù)與科學(xué):計(jì)算機(jī)科學(xué)導(dǎo)論

Java語(yǔ)言藝術(shù)與科學(xué):計(jì)算機(jī)科學(xué)導(dǎo)論

Java語(yǔ)言藝術(shù)與科學(xué):計(jì)算機(jī)科學(xué)導(dǎo)論

定 價(jià):¥49.00

作 者: (美)羅伯特 著
出版社: 清華大學(xué)出版社
叢編項(xiàng): 大學(xué)計(jì)算機(jī)教育國(guó)外著名教材系列(影印版)
標(biāo) 簽: J2EE

購(gòu)買(mǎi)這本書(shū)可以去


ISBN: 9787302198055 出版時(shí)間: 2009-05-01 包裝: 平裝
開(kāi)本: 16開(kāi) 頁(yè)數(shù): 587 字?jǐn)?shù):  

內(nèi)容簡(jiǎn)介

  《大學(xué)計(jì)算機(jī)教育國(guó)外著名教材系列:Java語(yǔ)言藝術(shù)與科學(xué)(計(jì)算機(jī)科學(xué)導(dǎo)論(影印版))》是斯坦福大學(xué)教授、著名的計(jì)算機(jī)科學(xué)教育領(lǐng)導(dǎo)者Eric S.Roberts編寫(xiě)的《C語(yǔ)言藝術(shù)與科學(xué)》一書(shū)的姊妹篇,是計(jì)算機(jī)科學(xué)的經(jīng)典教材,介紹了計(jì)算機(jī)科學(xué)的基礎(chǔ)知識(shí)和程序設(shè)計(jì)的專(zhuān)門(mén)知識(shí)。書(shū)中以介紹Java語(yǔ)言為主線(xiàn),不僅涵蓋Java語(yǔ)言的基本知識(shí),而且介紹了軟件工程技術(shù)以及如何應(yīng)用良好的程序設(shè)計(jì)風(fēng)格進(jìn)行開(kāi)發(fā)等內(nèi)容。書(shū)中采用了Java庫(kù)函數(shù)的方法,強(qiáng)調(diào)抽象的原則,詳細(xì)闡述了庫(kù)和模塊化開(kāi)發(fā)。此外,《大學(xué)計(jì)算機(jī)教育國(guó)外著名教材系列:Java語(yǔ)言藝術(shù)與科學(xué)(計(jì)算機(jī)科學(xué)導(dǎo)論(影印版))》還利用大量實(shí)例講述解決問(wèn)題的全過(guò)程,對(duì)開(kāi)發(fā)過(guò)程中常見(jiàn)的錯(cuò)誤也給出了解決和避免的方法?!洞髮W(xué)計(jì)算機(jī)教育國(guó)外著名教材系列:Java語(yǔ)言藝術(shù)與科學(xué)(計(jì)算機(jī)科學(xué)導(dǎo)論(影印版))》是關(guān)于數(shù)據(jù)結(jié)構(gòu)、程序設(shè)計(jì)和軟件工程的絕佳入門(mén)書(shū)籍,既可作為高等院校計(jì)算機(jī)科學(xué)導(dǎo)論課程及Java語(yǔ)言程序設(shè)計(jì)課程的教材,也是Java語(yǔ)言開(kāi)發(fā)人員的極佳參考用書(shū)。

作者簡(jiǎn)介

  Eric S. Roberts,美國(guó)斯坦福大學(xué)計(jì)算機(jī)科學(xué)系教授,并擔(dān)任主管教學(xué)事務(wù)的系主任。他由于教學(xué)改革所取得的成就被評(píng)為Charles Simonyi榮譽(yù)教授。他于1980年獲得哈佛大學(xué)應(yīng)用數(shù)學(xué)博士學(xué)位,并曾在加州Palo Alto的DEC公司的系統(tǒng)研究中心工作了5年。作為一位成功的教育工作者,Roberts還獲得了1993年的Bing Award獎(jiǎng)。

圖書(shū)目錄

1 In.roducfion
 1.1 A brief history ot computinq
 1.2 What is computer science?
 1.3 A brief tour of computer hardware
 1.4 Alaorithms
 1.5 Staaes in the Droaramminq orocess
1.6 Java and the obiect-oriented paradigm
1.7 Java and the World Wide Web
Summary
Review questions
2 Programming by Example
2.1 The "Hello world" program
2.2 Perspectives on the programming process
2.3 A program to add two numbers
2.4 Programming idioms and patterns
2.5 Classes and objects
2.6 Graphical programs
Summary
Review questions
Programming exercises
3 Expressions
3.1 Primitive data types
3.2 Constants and variables
3.3 Operators and operands
3.4 Assi.qnment statements
 3.5 Boolean expressions
 3.6 Designing for change
 Summary
 Review questions
 Programming exercises
4 Statement Forms
 4.1 Statement types in Java
 4.2 Control statements and problem solving
 4.3 The if statement
 4.4 The switch statement
 4.5 The while statement
 4.6 The for statement
 Summary
 Review questions
 Programming exercises
5 Methods
6 Objects and Classes
7 Objects and Memory
8 Strings and Characters
9 Object-oriented Graphics
10 Event-driven Programs
11 Arrays and ArrayLists
12 Searching and Sorting
13 Collection Classes
14 Looking Ahead
Index

本目錄推薦

掃描二維碼
Copyright ? 讀書(shū)網(wǎng) m.ranfinancial.com 2005-2020, All Rights Reserved.
鄂ICP備15019699號(hào) 鄂公網(wǎng)安備 42010302001612號(hào)