注冊(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ǔ)言規(guī)范(英文版,第三版)

Java語(yǔ)言規(guī)范(英文版,第三版)

Java語(yǔ)言規(guī)范(英文版,第三版)

定 價(jià):¥79.00

作 者: (美)戈斯林,等
出版社: 機(jī)械工業(yè)出版社
叢編項(xiàng): 經(jīng)典原版書(shū)庫(kù)
標(biāo) 簽: Java

ISBN: 9787111188391 出版時(shí)間: 2006-04-01 包裝: 平裝
開(kāi)本: 16開(kāi) 頁(yè)數(shù): 651 字?jǐn)?shù):  

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

  本書(shū)由“Java之父”James Gosling以及另外三位頂級(jí)大師(Bill Joy、Guy L. Steele Jr.和Gilad Bracha)親自撰寫(xiě),無(wú)論是對(duì)Java語(yǔ)言的初學(xué)者還是資深使用者都具有極高的價(jià)值。本書(shū)是關(guān)于Java程序設(shè)計(jì)語(yǔ)言最權(quán)威的技術(shù)參考書(shū)。全書(shū)側(cè)重于Java技術(shù)細(xì)節(jié)和內(nèi)幕,提供了對(duì)Java語(yǔ)言及其語(yǔ)法的全面、準(zhǔn)確、詳盡的描述,使讀者了解Java結(jié)構(gòu)的精確含義。書(shū)中講述了Java語(yǔ)言全部的語(yǔ)法和語(yǔ)義,論述了Java編譯器所要檢查的語(yǔ)法的各個(gè)方面和Java運(yùn)行模式的各個(gè)方面,同時(shí),還描述了Java語(yǔ)言最重要的新特征(包括generics、annotations、asserts、autoboxing enums、for-each loops、variable arity methods和static import clauses等)。本書(shū)適用于從Java初學(xué)者到專業(yè)程序員的各類Java讀者。

作者簡(jiǎn)介

  James Gosling 擁有卡內(nèi)基-梅隆大學(xué)計(jì)算機(jī)科學(xué)博士學(xué)位。他是Java語(yǔ)言的創(chuàng)建者,Sun公司Developer Products組的高級(jí)成員和首席術(shù)官,同時(shí)還是計(jì)算機(jī)業(yè)最負(fù)盛名的程序員之一。1996年。他獲得了《Software Development》雜志“最佳編程獎(jiǎng)”。他曾開(kāi)發(fā)過(guò)NeWS——Sun公司的網(wǎng)絡(luò)擴(kuò)展窗口系統(tǒng),并且是卡內(nèi)基-梅隆大學(xué)Andrwe項(xiàng)目的負(fù)責(zé)人之一。

圖書(shū)目錄

1. Introduction.
    Example Programs.
    Notation.
    Relationship to Predefined Classes and Interfaces.
    References.
2. Grammars.
    Context-Free Grammars.
    The Lexical Grammar.
    The Syntactic Grammar.
    Grammar Notation.
3. Lexical Structure.
    Unicode.
    Lexical Translations.
    Unicode Escapes.
    Line Terminators.
    Input Elements and Tokens.
    White Space.
    Comments.
    Identifiers.
    Keywords.
    Literals.
    Separators.
    Operators.
4. Types, Values, and Variables.
    The Kinds of Types and Values.
    Primitive Types and Values.
    Reference Types and Values.
    Type Variables.
    Parameterized Types.
    Type Erasure.
    Reifable Types.
    Raw Types.
    Intersection Types.
    Subtyping.
    Where Types Are Used.
    Variables.
5. Conversions and Promotions.
    Kinds of Conversion.
    Assignment Conversion.
    Method Invocation Conversion.
    String Conversion.
    Casting Conversion.
    Numeric Promotions.
6. Names.
    Declarations.
    Names and Identifiers.
    Scope of a Declaration.
    Members and Inheritance.
    Determining the Meaning of a Name.
    Access Control.
    Fully Qualified Names and Canonical Names.
    Naming Conventions.
7. Packages.
    Package Members.
    Host Support for Packages.
    Compilation Units.
    Package Declarations.
    Import Declarations.
    Top Level Type Declarations.
    Unique Package Names.
8. Classes.
    Class Declaration.
    Class Members.
    Field Declarations.
    Method Declarations.
    Member Type Declarations.
    Instance Initializers.
    Static Initializers.
    Constructor Declarations.
    Enums.
9. Interfaces.
    Interface Declarations.
    Interface Members.
    Field (Constant) Declarations.
    Abstract Method Declarations.
    Member Type Declarations.
    Annotation Types.
    Annotations.
10. Arrays.
    Array Types.
    Array Variables.
    Array Creation.
    Array Access.
    Arrays: A Simple Example.
    Array Initializers.
    Array Members.
    Class Objects for Arrays.
    An Array of Characters is Not a String.
    Array Store Exception.
11. Exceptions.
    The Causes of Exceptions.
    Compile-Time Checking of Exceptions.
    Handling of an Exception.
    An Example of Exceptions.
    The Exception Hierarchy.
12. Execution.
    Virtual Machine Start-Up.
    Loading of Classes and Interfaces.
    Linking of Classes and Interfaces.
    Initialization of Classes and Interfaces.
    Creation of New Class Instances.
    Finalization of Class Instances.
    Unloading of Classes and Interfaces.
    Program Exit.
13. Binary Compatibility.
    The Form of a Binary.
    What Binary Compatibility Is and Is Not.
    Evolution of Packages.
    Evolution of Classes.
    Evolution of Interfaces.
14. Blocks and Statements.
    Normal and Abrupt Completion of Statements.
    Blocks.
    Local Class Declarations.
    Local Variable Declaration Statements.
    Statements.
    The Empty Statement.
    Labeled Statements.
    Expression Statements.
    The if Statement.
    The assert Statement.
    The switch Statement.
    The while Statement.
    The do Statement.
    The for Statement.
    The break Statement.
    The continue Statement.
    The return Statement.
    The throw Statement.
    The synchronized Statement.
    The try statement.
    Unreachable Statements.
15. Expressions.
    Evaluation, Denotation, and Result.
    Variables as Values.
    Type of an Expression.
    FP-strict Expressions.
    Expressions and Run-Time Checks.
    Normal and Abrupt Completion of Evaluation.
    Evaluation Order.
    Primary Expressions.
    Class Instance Creation Expressions.
    Array Creation Expressions.
    Field Access Expressions.
    Method Invocation Expressions.
    Array Access Expressions.
    Postfix Expressions.
    Unary Operators.
    Cast Expressions.
    Multiplicative Operators.
    Additive Operators.
    Shift Operators.
    Relational Operators.
    Equality Operators.
    Bitwise and Logical Operators.
    Conditional-And Operator &&.
    Conditional-Or Operator ||.
    Conditional Operator ? :.
    Assignment Operators.
    Expression.
    Constant Expression.
16. Definite Assignment.
    Definite Assignment and Expressions.
    Definite Assignment and Statements.
    Definite Assignment and Parameters.
    Definite Assignment and Array Initializers.
    Definite Assignment and Enum Constants.
    Definite Assignment and Anonymous Classes.
    Definite Assignment and Member Types.
    Definite Assignment and Static Initializers.
    Definite Assignment, Constructors, and Instance Initializers.
17. Threads and Locks.
    Locks.
    Notation in Examples.
    Incorrectly Synchronized Programs Exhibit Surprising Behaviors.
    Memory Model.
    Final Field Semantics.
    Word Tearing.
    Non-atomic Treatment of double and long.
    Wait Sets and Notification.
    Sleep and Yield.
18. Syntax.
    The Grammar of the Java Programming Language.
Index.
Credits.
Colophon.

本目錄推薦

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