|Eingestellt in Kategorie:

Java Threads Taschenbuch Scott, Wong, Henry Oaks-

Ursprünglicher Text
Java Threads Paperback Scott, Wong, Henry Oaks
Ursprünglicher Text
Free US Delivery | ISBN:1565924185
Better World Books
  • (2626035)
  • Angemeldet als gewerblicher Verkäufer
US $5,89
Ca.EUR 5,51
Artikelzustand:
Sehr gut
Former library book; may include library markings. Used book that is in excellent condition. May ... Mehr erfahrenÜber den Artikelzustand
Ganz entspannt. Rückgaben akzeptiert.
Versand:
Kostenlos Economy Shipping. Weitere Detailsfür Versand
Standort: Mishawaka, Indiana, USA
Lieferung:
Lieferung zwischen Fr, 21. Jun und Mo, 24. Jun nach 43230 bei heutigem Zahlungseingang
Wir wenden ein spezielles Verfahren zur Einschätzung des Liefertermins an – in diese Schätzung fließen Faktoren wie die Entfernung des Käufers zum Artikelstandort, der gewählte Versandservice, die bisher versandten Artikel des Verkäufers und weitere ein. Insbesondere während saisonaler Spitzenzeiten können die Lieferzeiten abweichen.
Rücknahmen:
30 Tage Rückgabe. Käufer zahlt Rückversand. Weitere Details- Informationen zu Rückgaben
Zahlungen:
    

Sicher einkaufen

eBay-Käuferschutz
Geld zurück, wenn etwas mit diesem Artikel nicht stimmt. Mehr erfahreneBay-Käuferschutz - wird in neuem Fenster oder Tab geöffnet
Der Verkäufer ist für dieses Angebot verantwortlich.
eBay-Artikelnr.:315333852160
Zuletzt aktualisiert am 29. Mai. 2024 03:48:04 MESZAlle Änderungen ansehenAlle Änderungen ansehen

Artikelmerkmale

Artikelzustand
Sehr gut
Buch, das nicht neu aussieht und gelesen wurde, sich aber in einem hervorragenden Zustand befindet. Der Einband weist keine offensichtlichen Beschädigungen auf. Bei gebundenen Büchern ist der Schutzumschlag vorhanden (sofern zutreffend). Alle Seiten sind vollständig vorhanden, es gibt keine zerknitterten oder eingerissenen Seiten und im Text oder im Randbereich wurden keine Unterstreichungen, Markierungen oder Notizen vorgenommen. Der Inneneinband kann minimale Gebrauchsspuren aufweisen. Minimale Gebrauchsspuren. Genauere Einzelheiten sowie eine Beschreibung eventueller Mängel entnehmen Sie bitte dem Angebot des Verkäufers. Alle Zustandsdefinitionen aufrufenwird in neuem Fenster oder Tab geöffnet
Hinweise des Verkäufers
“Former library book; may include library markings. Used book that is in excellent condition. May ...
Features
EX-LIBRARY
Book Title
Java Threads Paperback Scott, Wong, Henry Oaks
ISBN
9781565924185
Subject Area
Computers
Publication Name
Java Threads
Item Length
9.2 in
Publisher
O'reilly Media, Incorporated
Subject
Programming Languages / Java, General
Series
Java Ser.
Publication Year
1999
Type
Textbook
Format
Trade Paperback
Language
English
Item Height
0.7 in
Author
Henry Wong, Scott Oaks
Item Width
7 in
Item Weight
19.2 Oz
Number of Pages
344 Pages

Über dieses Produkt

Product Information

Threads aren't a new idea: many operating systems and languages support them. But despite widespread support, threads tend to be something that everyone talks about, but few use. Programming with threads has a reputation for being tricky and nonportable.Not so with Java. Java's thread facilities are easy to use, and--like everything else in Java--are completely portable between platforms. And that's a good thing, because it's impossible to write anything but the simplest applet without encountering threads. If you want to work with Java, you have to learn about threads.This new edition shows you how to take full advantage of Java's thread facilities: where to use threads to increase efficiency, how to use them effectively, and how to avoid common mistakes."Java Threads" discusses problems like deadlock, race condition, and starvation in detail, helping you to write code without hidden bugs. It brings you up to date with the latest changes in the thread interface for JDK 1.2.The book offers a thorough discussion of the Thread and ThreadGroup classes, the Runnable interface, the language's synchronized operator. It explains thread scheduling ends by developing a CPUSchedule class, showing you how to implement your own scheduling policy. In addition, "Java Threads" shows you how to extend Java's thread primitives. Other extended examples include classes that implement reader/writer locks, general locks, locks at arbitrary scope, and asynchronous I/O. This edition also adds extensive examples on thread pools, advanced synchronization technique, like condition variables, barriers, and daemon locks. It shows how to work with classes that are not thread safe, and pays special attention to threading issues with Swing. A new chapter shows you how to write parallel code for multiprocessor machines.In short, "Java Threads" covers everything you need to know about threads, from the simplest animation applet to the most complex applications. If you plan to do any serious work in Java, you will find this book invaluable. Examples available online. Covers Java 2.

Product Identifiers

Publisher
O'reilly Media, Incorporated
ISBN-10
1565924185
ISBN-13
9781565924185
eBay Product ID (ePID)
434869

Product Key Features

Author
Henry Wong, Scott Oaks
Publication Name
Java Threads
Format
Trade Paperback
Language
English
Subject
Programming Languages / Java, General
Series
Java Ser.
Publication Year
1999
Type
Textbook
Subject Area
Computers
Number of Pages
344 Pages

Dimensions

Item Length
9.2 in
Item Height
0.7 in
Item Width
7 in
Item Weight
19.2 Oz

Additional Product Features

Edition Number
2
LCCN
00-267413
Lc Classification Number
Qa76.73.J38o25 1999
Table of Content
Preface; Who Should Read This Book?; Versions Used in This Book; Organization of This Book; Conventions Used in This Book; Feedback for Authors; Acknowledgments;Chapter 1: Introduction to Threading; 1.1 Java Terms; 1.2 Thread Overview; 1.3 Why Threads?; 1.4 Summary;Chapter 2: The Java ThreadingAPI; 2.1 Threading Using the Thread Class; 2.2 Threading Using the Runnable Interface; 2.3 The Life Cycle of a Thread; 2.4 Thread Naming; 2.5 Thread Access; 2.6 More on Starting, Stopping, and Joining; 2.7 Summary;Chapter 3: Synchronization Techniques; 3.1 A Banking Example; 3.2 Reading Data Asynchronously; 3.3 A Class to Perform Synchronization; 3.4 The Synchronized Block; 3.5 Nested Locks; 3.6 Deadlock; 3.7 Return to the Banking Example; 3.8 Synchronizing Static Methods; 3.9 Summary;Chapter 4: Wait and Notify; 4.1 Back to Work (at the Bank); 4.2 Wait and Notify; 4.3 wait(), notify(), and notifyAll(); 4.4 wait() and sleep(); 4.5 Thread Interruption; 4.6 Static Methods (Synchronization Details); 4.7 Summary;Chapter 5: Useful Examplesof Java Thread Programming; 5.1 Data Structures and Containers; 5.2 Simple Synchronization Examples; 5.3 A Network Server Class; 5.4 The AsyncInputStream Class; 5.5 Using TCPServer with AsyncInputStreams; 5.6 Summary;Chapter 6: Java Thread Scheduling; 6.1 An Overview of Thread Scheduling; 6.2 When Scheduling Is Important; 6.3 Scheduling with Thread Priorities; 6.4 Popular Scheduling Implementations; 6.5 Native Scheduling Support; 6.6 Other Thread-Scheduling Methods; 6.7 Summary;Chapter 7: Java Thread Scheduling Examples; 7.1 Thread Pools; 7.2 Round-Robin Scheduling; 7.3 Job Scheduling; 7.4 Summary;Chapter 8: Advanced Synchronization Topics; 8.1 Synchronization Terms; 8.2 Preventing Deadlock; 8.3 Lock Starvation; 8.4 Thread-Unsafe Classes; 8.5 Summary;Chapter 9: Parallelizing for Multiprocessor Machines; 9.1 Parallelizing a Single-Threaded Program; 9.2 Inner-Loop Threading; 9.3 Loop Printing; 9.4 Multiprocessor Scaling; 9.5 Summary;Chapter 10: Thread Groups; 10.1 Thread Group Concepts; 10.2 Creating Thread Groups; 10.3 Thread Group Methods; 10.4 Manipulating Thread Groups; 10.5 Thread Groups, Threads, and Security; 10.6 Summary;Miscellaneous Topics; Thread Stack Information; General Thread Information; Default Exception Handler; The ThreadDeath Class; The Volatile Keyword;Exceptions and Errors; InterruptedException; InterruptedIOException; NoSuchMethodError; RuntimeException;Colophon;
Copyright Date
1999
Target Audience
Scholarly & Professional
Dewey Decimal
005.13/3
Dewey Edition
22
Illustrated
Yes

Artikelbeschreibung des Verkäufers

Rechtliche Informationen des Verkäufers

Better World Books Marketplace, Inc.
Lisa Day
55742 Currant Road
46545 Mishawaka, IN
United States
Kontaktinformationen anzeigen
:nofeleT0325558475
:liaM-Emoc.skoobdlrowretteb@plehyabe
Ich versichere, dass alle meine Verkaufsaktivitäten in Übereinstimmung mit allen geltenden Gesetzen und Vorschriften der EU erfolgen.
Better World Books

Better World Books

98,7% positive Bewertungen
12,8 Mio. Artikel verkauft
Shop besuchenKontakt
Mitglied seit Nov 2002

Detaillierte Verkäuferbewertungen

Durchschnitt in den letzten 12 Monaten

Genaue Beschreibung
4.9
Angemessene Versandkosten
5.0
Lieferzeit
5.0
Kommunikation
5.0
Angemeldet als gewerblicher Verkäufer

Verkäuferbewertungen (4.100.893)

l***o (299)- Bewertung vom Käufer.
Letzter Monat
Bestätigter Kauf
As pictured!
r***s (1351)- Bewertung vom Käufer.
Letzter Monat
Bestätigter Kauf
Great product
d***d (137)- Bewertung vom Käufer.
Letzter Monat
Bestätigter Kauf
Excellent, smooth transaction! Book is in great condition. Fast shipping. Thank you. A+++

Produktbewertungen & Rezensionen

Noch keine Bewertungen oder Rezensionen