Dit object is niet op voorraad.
Hebt u iets om te verkopen?

The Art of Debugging with GDB and DDD by Matloff, Norman

by Matloff, Norman | PB | Good
Objectstaat:
Goed
Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, ... Meer lezenover objectstaat
Niet op voorraad / 3 verkocht
Prijs:
US $23,24
OngeveerEUR 21,66
Verzendkosten:
Gratis Economy Shipping. Details bekijkenvoor verzending
Bevindt zich in: Aurora, Illinois, Verenigde Staten
Levering:
Geschatte levering tussen vr, 28 jun en ma, 1 jul tot 43230
De levertijd wordt geschat met onze eigen methode op basis van onder meer de nabijheid van de koper ten opzichte van de objectlocatie, de geselecteerde verzendservice, en de verzendgeschiedenis van de verkoper. De leveringstermijnen kunnen variëren, vooral gedurende piekperiodes.
Retourbeleid:
30 dagen om te retourneren. Verkoper betaalt voor retourzending. Details bekijken- voor meer informatie over retourzendingen
Betalingen:
     

Winkel met vertrouwen

Geld-terug-garantie van eBay
Ontvang het object dat u hebt besteld of krijg uw geld terug. 

Verkopergegevens

Ingeschreven als zakelijke verkoper
De verkoper neemt de volledige verantwoordelijkheid voor deze aanbieding.
eBay-objectnummer:194424307372
Laatst bijgewerkt op 08 mei 2024 16:39:47 CESTAlle herzieningen bekijkenAlle herzieningen bekijken

Specificaties

Objectstaat
Goed
Een boek dat is gelezen, maar zich in goede staat bevindt. De kaft is zeer minimaal beschadigd (er zijn bijvoorbeeld slijtplekken), maar er zijn geen deukjes of scheuren. De harde kaft heeft mogelijk geen stofomslag meer. De boekband vertoont minimale slijtage. De meeste bladzijden zijn onbeschadigd. Er zijn weinig vouwen en scheuren en er is vrijwel geen tekst met potlood onderstreept of met een accentueerstift gemarkeerd. Er is niet in de kantlijn geschreven. Er ontbreken geen bladzijden. Bekijk de aanbieding van de verkoper voor de volledige details en een beschrijving van gebreken. Alle staatdefinities bekijkenwordt in nieuw venster of op nieuw tabblad geopend
Opmerkingen van verkoper
“Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, ...
Binding
Paperback
Weight
1 lbs
Product Group
Book
IsTextBook
No
ISBN
9781593271749
Subject Area
Computers
Publication Name
Art of Debugging with Gdb, DDD, and Eclipse
Publisher
No Starch Press, Incorporated
Item Length
9.2 in
Subject
Software Development & Engineering / Quality Assurance & Testing, Programming / General, Software Development & Engineering / General, Programming Languages / C
Publication Year
2008
Type
Textbook
Format
Trade Paperback
Language
English
Item Height
0.9 in
Author
Peter Salzman, Norman Matloff
Features
New Edition
Item Weight
18.9 Oz
Item Width
7 in
Number of Pages
280 Pages

Over dit product

Product Identifiers

Publisher
No Starch Press, Incorporated
ISBN-10
1593271743
ISBN-13
9781593271749
eBay Product ID (ePID)
63647990

Product Key Features

Number of Pages
280 Pages
Publication Name
Art of Debugging with Gdb, DDD, and Eclipse
Language
English
Subject
Software Development & Engineering / Quality Assurance & Testing, Programming / General, Software Development & Engineering / General, Programming Languages / C
Publication Year
2008
Features
New Edition
Type
Textbook
Author
Peter Salzman, Norman Matloff
Subject Area
Computers
Format
Trade Paperback

Dimensions

Item Height
0.9 in
Item Weight
18.9 Oz
Item Length
9.2 in
Item Width
7 in

Additional Product Features

Intended Audience
Scholarly & Professional
LCCN
2003-017566
Dewey Edition
22
Illustrated
Yes
Dewey Decimal
005.14
Table Of Content
PREFACE;Chapter 1: SOME PRELIMINARIES FOR BEGINNERS AND PROS; 1.1 Debugging Tools Used in This Book; 1.2 Programming Language Focus; 1.3 The Principles of Debugging; 1.4 Text-Based vs. GUI-Based Debugging Tools, and a Compromise Between Them; 1.5 Main Debugger Operations; 1.6 Online Help; 1.7 Introductory Debugging Session; 1.8 Use of Startup Files;Chapter 2: STOPPING TO TAKE A LOOK AROUND; 2.1 Mechanisms for Pause; 2.2 Overview of Breakpoints; 2.3 Keeping Track of Breakpoints; 2.4 Setting Breakpoints; 2.5 Extended GDB Example; 2.6 Persistence of Breakpoints; 2.7 Deleting and Disabling Breakpoints; 2.8 More on Viewing Breakpoint Attributes; 2.9 Resuming Execution; 2.10 Conditional Breakpoints; 2.11 Breakpoint Command Lists; 2.12 Watchpoints;Chapter 3: INSPECTING AND SETTING VARIABLES; 3.1 Our Main Example Code; 3.2 Advanced Inspection and Setting of Variables; 3.3 Setting Variables from Within GDB/DDD/Eclipse; 3.4 GDB's Own Variables;Chapter 4: WHEN A PROGRAM CRASHES; 4.1 Background Material: Memory Management; 4.2 Core Files; 4.3 Extended Example;Chapter 5: DEBUGGING IN A MULTIPLE-ACTIVITIES CONTEXT; 5.1 Debugging Client/Server Network Programs; 5.2 Debugging Threaded Code; 5.3 Debugging Parallel Applications; 5.4 Extended Example;Chapter 6: SPECIAL TOPICS; 6.1 What If It Doesn't Even Compile or Load?; 6.2 Debugging GUI Programs;Chapter 7: OTHER TOOLS; 7.1 Making Good Use of a Text Editor; 7.2 Making Good Use of the Compiler; 7.3 Error Reporting in C; 7.4 Better Living with strace and ltrace; 7.5 Static Code Checkers: lint and Friends; 7.6 Debugging Dynamically Allocated Memory;Chapter 8: USING GDB/DDD/ECLIPSE FOR OTHER LANGUAGES; 8.1 Java; 8.2 Perl; 8.3 Python; 8.4 Debugging SWIG Code; 8.5 Assembly Language;COLOPHON;
Edition Description
New Edition
Synopsis
Debugging is crucial to successful software development, but even many experienced programmers find it challenging. Sophisticated debugging tools are available, yet it may be difficult to determine which features are useful in which situations. The Art of Debugging is your guide to making the debugging process more efficient and effective. The Art of Debugging illustrates the use three of the most popular debugging tools on Linux/Unix platforms: GDB, DDD, and Eclipse. The text-command based GDB (the GNU Project Debugger) is included with most distributions. DDD is a popular GUI front end for GDB, while Eclipse provides a complete integrated development environment. In addition to offering specific advice for debugging with each tool, authors Norm Matloff and Pete Salzman cover general strategies for improving the process of finding and fixing coding errors, including how to: Inspect variables and data structures Understand segmentation faults and core dumps Know why your program crashes or throws exceptions Use features like catchpoints, convenience variables, and artificial arrays Avoid common debugging pitfalls Real world examples of coding errors help to clarify the authors' guiding principles, and coverage of complex topics like thread, client-server, GUI, and parallel programming debugging will make you even more proficient. You'll also learn how to prevent errors in the first place with text editors, compilers, error reporting, and static code checkers. Whether you dread the thought of debugging your programs or simply want to improve your current debugging efforts, you'll find a valuable ally in The Art of Debugging ., Debugging is of central importance to successful software development, and yet many beginning programmers are unaware of the techniques they can use to reduce the time they spend finding and fixing programming errors. GDB, a popular open source debugger, allows a programmer to trace program execution line by line, set breakpoints, inspect variables, and look at what the program is doing at any given time. Using an assortment of real world coding errors "from simple typos to major logical blunders The Art of Debugging with GDB and DDD discusses how to manage memory, understand core dumps, and trace programming errors to their root cause. The book covers topics other debugging books omit "such as threaded, server/client, GUI, and parallel programming "as well as how to avoid common debugging pitfalls. Readers also learn about techniques and tools they can use to prevent errors, saving themselves valuable time and effort., Debugging is crucial to successful software development, but even many experienced programmers find it challenging. Sophisticated debugging tools are available, yet it may be difficult to determine which features are useful in which situations. The Art of Debugging is your guide to making the debugging process more efficient and effective. The Art of Debugging illustrates the use three of the most popular debugging tools on Linux/Unix platforms: GDB, DDD, and Eclipse. The text-command based GDB (the GNU Project Debugger) is included with most distributions. DDD is a popular GUI front end for GDB, while Eclipse provides a complete integrated development environment. In addition to offering specific advice for debugging with each tool, authors Norm Matloff and Pete Salzman cover general strategies for improving the process of finding and fixing coding errors, including how to: Inspect variables and data structures Understand segmentation faults and core dumps Know why your program cr, Debugging is of central importance to successful software development, and yet many beginning programmers are unaware of the techniques they can use to reduce the time they spend finding and fixing programming errors. GDB, a popular open source debugger, allows a programmer to trace program execution line by line, set breakpoints, inspect ......
LC Classification Number
QA76.9.D43
Copyright Date
2008
ebay_catalog_id
4

Objectbeschrijving van de verkoper

Informatie van zakelijke verkoper

Thrift Books Global, LLC
TB Thrift Books
18300 Cascade Ave S
Ste 150
98188 Seattle, WA
United States
Contactgegevens weergeven
:liam-Emoc.skoobtfirht@yabe.selas
Ik verklaar dat al mijn verkoopactiviteiten zullen voldoen aan alle wet- en regelgeving van de EU.
ThriftBooks

ThriftBooks

99% positieve feedback
17,8M objecten verkocht
Reageert meestal binnen 24 uur

Gedetailleerde verkopersbeoordelingen

Gemiddelde van de afgelopen 12 maanden

Nauwkeurige beschrijving
4.9
Redelijke verzendkosten
5.0
Verzendtijd
5.0
Communicatie
4.9
Ingeschreven als zakelijke verkoper

Feedback verkoper (5.227.780)

h***h (2979)- Feedback gegeven door koper.
Afgelopen maand
Geverifieerde aankoop
Great seller. Thank you. Fast fast!!!
r***r (199)- Feedback gegeven door koper.
Afgelopen maand
Geverifieerde aankoop
Excellent seller. will do business with again. Thank you.
-***d (1752)- Feedback gegeven door koper.
Afgelopen maand
Geverifieerde aankoop
Great seasonal movie great price fantastic seller 5*****S all round thank u