注冊 | 登錄讀書好,好讀書,讀好書!
讀書網(wǎng)-DuShu.com
當前位置: 首頁出版圖書科學技術(shù)計算機/網(wǎng)絡(luò)軟件與程序設(shè)計JAVA及其相關(guān)Java語言規(guī)范(英文版,第三版)

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

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

定 價:¥79.00

作 者: (美)戈斯林,等
出版社: 機械工業(yè)出版社
叢編項: 經(jīng)典原版書庫
標 簽: Java

ISBN: 9787111188391 出版時間: 2006-04-01 包裝: 平裝
開本: 16開 頁數(shù): 651 字數(shù):  

內(nèi)容簡介

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

作者簡介

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

圖書目錄

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 ? 讀書網(wǎng) www.afriseller.com 2005-2020, All Rights Reserved.
鄂ICP備15019699號 鄂公網(wǎng)安備 42010302001612號