Warenkorb
Kostenloser Versand
Unsere Operationen sind klimaneutral

Programming for the Java (TM) Virtual Machine Joshua Engel

Programming for the Java (TM) Virtual Machine von Joshua Engel

Programming for the Java (TM) Virtual Machine Joshua Engel


€46.99
Zustand - Sehr Gut
Nur noch 1

Zusammenfassung

The core of Java technology, the Java virtual machine is an abstract computing machine that enables the Java platform to host applications on any computer or operating system without rewriting or recompiling. This book looks into the central workings of the technology and teaches the reader how to write real programs for the Java virtual machine.

Programming for the Java (TM) Virtual Machine Zusammenfassung

Programming for the Java (TM) Virtual Machine Joshua Engel

The core of Java technology, the Java virtual machine is an abstract computing machine that enables the Java platform to host applications on any computer or operating system without rewriting or recompiling. Anyone interested in designing a language or writing a compiler for the Java virtual machine must have an in-depth understanding of its binary class format and instruction set. If you are programming with the Java programming language, knowledge of the Java virtual machine will give you valuable insight into the Java platform's security capabilities and cross-platform portability. It will increase your understanding of the Java programming language, enabling you to improve the security and performance of your programs. The author employs a tutorial approach that provides a detailed look into the central workings of the technology and teaches the reader how to write real programs for the Java virtual machine. He describes methods for becoming a better programmer through an advanced understanding of the Java virtual machine and Java technology. Programming for the Java Virtual Machine offers comprehensive coverage of all the major elements of the Java virtual machine--classes and objects, control instructions, debugging, class loaders, compiling the Java programming language, performance issues, security, and threads and synchronization. The book provides an introduction to the Java Virtual Machine Specification (JVMS), with a collection of topics that help programmers understand the Java virtual machine and the JVMS better. In addition, the book features implementations of Prolog and Scheme, a language that runs on top of the Java virtual machine, generating Java virtual machine code as it runs and using a Java virtual machine class loader to load the generated code into the system. You will find detailed information on such topics as: *The Java virtual machine verification algorithm *How Java virtual machine security works, and what it can and can't do *Using class loaders to incorporate code and dynamically generated code from the Internet, the Java Foundation Classes, database queries, and other languages *The mechanics of compiling the Java programming language for the Java virtual machine *Implementing other languages using the Java virtual machine, including Scheme, Prolog, Sather, Eiffel, and regular expressions Numerous examples illustrate techniques and concepts, and exercises with solutions help you gain practical experience. 0201309726B04062001

Über Joshua Engel

Joshua Engel is a programmer, computer scientist, and acknowledged expert in the Java virtual machine. He is Chief Software Developer for Knowledge Bus, Inc. (www.knowledgebus.com) During his extensive programming career, he has worked with dozens of programming languages and even designed a few of his own.



0201309726AB04062001

Inhaltsverzeichnis



Preface.


1. Introduction to the Java Virtual Machine.

Java Virtual Machine and Java.

What Is the Java Virtual Machine?

Instruction Set.

class File Format.

Verification.

Java Platform.

Organization of the Java Virtual Machine.

Class Area.

Java Stack.

Heap.

Native Method Stacks.

Example.

Garbage Collection.

Finalization.

Timing of Garbage Collection.

JVM Implementations.

Versions of the Virtual Machine.

Future of the Java Virtual Machine.



2. Oolong.

Hello, World.

.class and .super Directives.

main Method.

Instructions.

Structure of an Oolong Program.

Defining the Class.

Superclasses.

Declaring Fields.

Declaring Methods.

Interfaces.



3. Writing Methods.

Some Definitions.

Types.

Numeric Types.

Object Types.

Type returnAddress.

Mnemonic Naming Conventions.

Testing Code Examples.

Returns.

Constants.

General Constants.

Small Constants and null.

Local Variables.

Initializing Variables.

Local Variables as Method Arguments.

Math.

Arithmetic Operations.

Nonnumbers and Infinity.

Bitwise Operations.

Floating-Point Arithmetic and strictfp.

Type Conversions.

Conversion Example.

Widening and Narrowing.

Stack Manipulations.

Arrays of Numbers.

Just Biding Your Time.



4. Classes and Objects.

What Is an Object?

Objects and References.

Class Names.

Packages.



Creating Objects.


Constructors.


Using Fields.

Types and getfield.

Inheriting Fields.

Changing Field Values.

Invoking Methods on Objects.

Virtual Invocation.

Method Inheritance and Overriding.

Overloading and Method Matching.

Invoking a Method Directly.

invokespecial and super.

Casting.

Casting, Fields, Methods, and Java.

Returning Objects.

Interfaces.

Static Fields and Methods.

Class Initialization.

Arrays.

Arrays of Reference.

Multidimensional Arrays.

Length of Arrays.



5. Control Instructions.

Comparing Integers.

Comparing References.

Other Comparisons.

Switches.

Subroutines.

Exceptions.

Multiple Exception Handlers.

.throws Directive.

Other Ways to Throw Exceptions.

A Gentler Way of Checking Type.



6. Verification Process.

How the Verification Algorithm Works.

Is It a Structurally Valid class File?

Are All Constant References Correct?

Will Each Instruction Always Find a Correctly Formed Stack and Local Variable Array?

Example 1: Hello, World.

Example 2: gotos and ifs.

Example 3: Code That Doesn't Verify.

Example 4: Dealing with Subclasses.

Algorithm.

Do External References Check Out?

Java Language and Verification Algorithm.

Fooling the Virtual Machine with a Java Compiler.

Other Languages and the Verification Algorithm.

Other Safety Requirements.

Checking Verification.



7. Debugging.

Debugging Directives in Oolong.

.source Directive and .line Directives.

.var Directive.

Debugging Oolong Programs.

Runtime Tracing.



8. Class Loaders.

How Classes Are Loaded.

Loading.

Linking.

Loading Classes without a Class Loader.

Making Your Own Class Loader.

Caching Classes.

Examples.

Working with Class Objects.

Reflection.



9. Inside a Java class File.

class File Header.

Constant Pool.

UTF8 Entries.

Constant Entries.

Field, Method, and Class Entries.

Class Information.

Fields and Methods.

Class Attributes.

Other Attributes.

ConstantValue Attribute.

Exceptions Attribute.

InnerClasses Attribute.



10. Compiling Java.

Expressions and Statements.

Expression Types.

Numeric Types.

Object Types.

Expression Result Types.

Compile-Time Types and Type Restrictions.

Type Safety and Verifiability.

Compiling Statements and Expressions.

Local Variable Declarations.

Fields and Variables.

Abbreviations.

Other Assignments.

Assignments as Expressions.

Type-Checking in Assignments.

Creating New Objects.

Class Name Abbreviations.

Arithmetic Expressions.

Numeric Coercions.

Casting Numeric Values.

Operator.

Method Calls.

Virtual Method Calls.

Static Method Calls.

Example of Method Calls.

Overriding.

Overloading.

Interfaces.

Expressions as Statements.

Ifs and Booleans.

Boolean Values.

if Statements.

Comparisons.

Floating-Point Comparisons and NaN.

Integer Comparisons.

References and Object Equality.

Boolean Operators.

Other Control Structures.

Loops.

Compiling Control Constructs.

Compound Statements and Verification.

Returns.

Field Declarations.

Method Declarations.

Constructors.

Using Other Constructors in the Same Class.

Default Constructors.

Field Initializers and the Constructor.

Conclusion.



11. Compiling Other Languages.

Java Version 1.1.

Class Literals.

Inner Classes.

Variable Scoping with Inner Classes.

Regular Expressions.

Iterators.

Iterators in Sather.

Implementing Iterators.

Iterators with Arguments.

Using Iterators.

Parameterized Types.

Implementing Parameterized Types with a Generic Class.

Implementing Parameterized Types as Templates.

Multiple Inheritance.

Interfaces for Multiple Inheritance.

Implementing the Interfaces.

Fields.

Conclusion.



12. Implementing Scheme.

Scheme Concepts.

Compiling Scheme into Bytecodes.

Compiling Lambda Expressions.

Example.

Scheme Library.

Optimizing Scheme.

Static Scoping.

Using Local Variables.

Inlining.

Tail Recursion.

Using Type Information.



13. Implementing Prolog.

Introduction to Prolog.

Asking Questions.

Binding Patterns.

Implications.

Binding Patterns and Implications.

Facts as Rules.

More About Unification.

Implementation Basics.

Unification.

Unification Algorithm.

Managing Bindings.

Rules as Programs.

inside.

within.

yield and Backtracking.

Implementing Rules.

Implementing within.

Implementing Conjunctions.

Constructing within.

Compiling Facts.

Case Study.



14. Performance.

Fast Virtual Machines.

Garbage Collection Performance.

Implementing References.

Bytecode Optimization Techniques.

Warning.

Constant Propagation.

Strength Reduction.

Loop Unrolling.

Peephole Optimization.

Inlining.

Inlining Fields.

Separate Compilation.



15. Security and the Virtual Machine.

Java platform and Need for Security.

Security Promises of the JVM.

Security Architecture and Security Policy.

Example.

Basic Applet Security Policy.

More Sophisticated Policies.

Some Potential Attacks.

Implementation Details.

Protecting the Security Manager.

Bypassing Java Security.

Using Unconstructed Objects.

Invalid Casts.

Changing the Class of a Reference.

Reading Uninitialized Fields.

Array Bounds Checks.

Catching Exceptions.

Hidden Code.

Conclusion.



16. Threads and Synchronization.

Threads.

Example: Multithreaded Web Server.

Exceptions and Threads.

Sharing State Between Threads.

Need for Synchronization.

Exception: longs and doubles.

Monitors and Object Locks.

Synchronization in Java.

Synchronized Methods.

Scheduling.

Surrendering Control of the CPU.

Waiting for Another Thread.



Conclusion.


A. Tables.

Instructions by Opcode.

Instructions Alphabetically.

Instructions by Category.

Arithmetic.

Array.

Constant.

Control.

Data Type Conversion.

Object.

Stack Manipulation.

Synchronization.

Variable.



B. Oolong Reference.

Using the Oolong Assembler.

Gnoloo.

DumpClass.

Oolong Language.

Comments.

source.

class.

interface.

end class.

super.

implements.

field.

method.

limit locals.

limit stack.

line.

var.

throws.

catch.

end method.

Instructions.

Instructions with No Arguments.

Integers.

Labels.

Classes.

Fields and Methods.

invokeinterface.

multianewarray.

ldc, ldc_w, and ldc2_w.

newarray.

tableswitch.

lookupswitch.



C. Answers to Selected Exercises.


Further Readings.


Java and the JVM.


Newsgroup.


Other Languages.


Compilers.


Index. 0201309726T04062001

Zusätzliche Informationen

GOR001390998
9780201309720
0201309726
Programming for the Java (TM) Virtual Machine Joshua Engel
Gebraucht - Sehr Gut
Gebundene Ausgabe
Pearson Education (US)
19990702
512
N/A
Die Abbildung des Buches dient nur Illustrationszwecken, die tatsächliche Bindung, das Cover und die Auflage können sich davon unterscheiden.
Dies ist ein gebrauchtes Buch. Es wurde schon einmal gelesen und weist von der früheren Nutzung Gebrauchsspuren auf. Wir gehen davon aus, dass es im Großen und Ganzen in einem sehr guten Zustand ist. Sollten Sie jedoch nicht vollständig zufrieden sein, setzen Sie sich bitte mit uns in Verbindung.