Ihre E-Mail wurde erfolgreich gesendet. Bitte prüfen Sie Ihren Maileingang.

Leider ist ein Fehler beim E-Mail-Versand aufgetreten. Bitte versuchen Sie es erneut.

Vorgang fortführen?

Exportieren
  • 1
    Online-Ressource
    Online-Ressource
    Reading, MA : Addison-Wesley
    ISBN: 9780133133448 , 0133133443
    Sprache: Englisch
    Seiten: 1 online resource (1 v.) , ill.
    Serie: Addison-Wesley professional computing series
    Paralleltitel: Erscheint auch als
    Schlagwort(e): Computer programming ; Electronic books ; Electronic books ; local
    Kurzfassung: With the same insight and authority that made their book The Unix Programming Environment a classic, Brian Kernighan and Rob Pike have written The Practice of Programming to help make individual programmers more effective and productive. The practice of programming is more than just writing code. Programmers must also assess tradeoffs, choose among design alternatives, debug and test, improve performance, and maintain software written by themselves and others. At the same time, they must be concerned with issues like compatibility, robustness, and reliability, while meeting specifications. The Practice of Programming covers all these topics, and more. This book is full of practical advice and real-world examples in C, C++, Java, and a variety of special-purpose languages. It includes chapters on: debugging: finding bugs quickly and methodically testing: guaranteeing that software works correctly and reliably performance: making programs faster and more compact portability: ensuring that programs run everywhere without change design: balancing goals and constraints to decide which algorithms and data structures are best interfaces: using abstraction and information hiding to control the interactions between components style: writing code that works well and is a pleasure to read notation: choosing languages and tools that let the machine do more of the work Kernighan and Pike have distilled years of experience writing programs, teaching, and working with other programmers to create this book. Anyone who writes software will profit from the principles and guidance in The Practice of Programming .
    Anmerkung: Includes bibliographical references and index. - Description based on print version record
    Bibliothek Standort Signatur Band/Heft/Jahr Verfügbarkeit
    BibTip Andere fanden auch interessant ...
  • 2
    Titel: Go程序设计语言 / : The Go programming language / Alan A.A. Donovan, Brian W. Kernighan.
    ISBN: 9787111558422 , 7111558421
    Sprache: Chinesisch
    Seiten: 1 online resource , illustrations.
    Ausgabe: [First edition].
    Serie: Ji suan ji ke xue cong shu
    Originaltitel: Go programming language
    DDC: 005.13/3
    Schlagwort(e): Go (Computer program language) ; Open source software Programming ; Go (Langage de programmation) ; Logiciels libres ; Programmation ; Electronic books
    Kurzfassung: Detailed summary in vernacular field.
    Bibliothek Standort Signatur Band/Heft/Jahr Verfügbarkeit
    BibTip Andere fanden auch interessant ...
  • 3
    Online-Ressource
    Online-Ressource
    Hoboken, New Jersey : Addison-Wesley
    Sprache: Englisch
    Seiten: 1 online resource (240 pages) , illustrations
    Ausgabe: Second edition.
    Serie: Addison-Wesley professional computing series
    DDC: 005.13/3
    Schlagwort(e): AWK (Computer program language) ; AWK (Langage de programmation)
    Kurzfassung: Awk was developed in 1977 at Bell Labs, and it’s still a remarkably useful tool for solving a wide variety of problems quickly and efficiently. In this update of the classic Awk book, the creators of the language show you what Awk can do and teach you how to use it effectively.
    Anmerkung: Includes index
    Bibliothek Standort Signatur Band/Heft/Jahr Verfügbarkeit
    BibTip Andere fanden auch interessant ...
  • 4
    Online-Ressource
    Online-Ressource
    [Erscheinungsort nicht ermittelbar] : dpunkt | Boston, MA : Safari
    Sprache: Englisch , Deutsch
    Seiten: 1 online resource (254 pages)
    Ausgabe: 1st edition
    Schlagwort(e): Electronic books ; local
    Kurzfassung: Computerpionier Brian W. Kernighan war in der Entwicklung von UNIX beteiligt. In diesem lebendig illustrierten Buch erzählt er eine umfassende Geschichte des äußerst einflussreichen und weit verbreiteten Betriebssystems von den Anfängen bis zur heutigen Bedeutung. Kernighan leistete fast von Anfang an aktive Beiträge. Sein persönliches Miterleben der Entwicklung und die persönlichen Anekdoten von seinen damaligen Wegbegleitern verleihen dem Buch einen großen Wert. Kernighan schafft eine gelungene Balance zwischen »offizieller Geschichte« und seinem eigenen Engagement bei der Entwicklung von UNIX. Er erklärt überzeugend, warum gerade UNIX und sein Ökosystem einen Siegeszug in die Server dieser Welt antreten konnten.
    Anmerkung: Online resource; Title from title page (viewed October 28, 2020) , Mode of access: World Wide Web.
    Bibliothek Standort Signatur Band/Heft/Jahr Verfügbarkeit
    BibTip Andere fanden auch interessant ...
  • 5
    Online-Ressource
    Online-Ressource
    New York : Addison-Wesley
    ISBN: 9780134190570 , 0134190572
    Sprache: Englisch
    Seiten: 1 online resource (1 volume) , illustrations.
    Serie: Addison-Wesley professional computing series
    Paralleltitel: Erscheint auch als
    Schlagwort(e): Go (Computer program language) ; Open source software ; Programming ; Electronic books ; Electronic books ; local
    Kurzfassung: The Go Programming Language is the authoritative resource for any programmer who wants to learn Go. It shows how to write clear and idiomatic Go to solve real-world problems. The book does not assume prior knowledge of Go nor experience with any specific language, so you'll find it accessible whether you're most comfortable with JavaScript, Ruby, Python, Java, or C++. The first chapter is a tutorial on the basic concepts of Go, introduced through programs for file I/O and text processing, simple graphics, and web clients and servers. Early chapters cover the structural elements of Go programs: syntax, control flow, data types, and the organization of a program into packages, files, and functions. The examples illustrate many packages from the standard library and show how to create new ones of your own. Later chapters explain the package mechanism in more detail, and how to build, test, and maintain projects using the go tool. The chapters on methods and interfaces introduce Go's unconventional approach to object-oriented programming, in which methods can be declared on any type and interfaces are implicitly satisfied. They explain the key principles of encapsulation, composition, and substitutability using realistic examples. Two chapters on concurrency present in-depth approaches to this increasingly important topic. The first, which covers the basic mechanisms of goroutines and channels, illustrates the style known as communicating sequential processes for which Go is renowned. The second covers more traditional aspects of concurrency with shared variables. These chapters provide a solid foundation for programmers encountering concurrency for the first time. The final two chapters explore lower-level features of Go. One covers the art of metaprogramming using reflection. The other shows how to use the unsafe package to step outside the type system for special situations, and how to use the cgo tool to create Go bindings for C libraries. The book features hundreds of interesting and practical examples of well-written Go code that cover the whole language, its most important packages, and a wide range of applications. Each chapter has exercises to test your understanding and explore extensions and alternatives. Source code is freely available for download from http://gopl.io/ and may be conveniently fetched, built, and installed using the go get command.
    Anmerkung: Includes index. - Description based on print version record
    Bibliothek Standort Signatur Band/Heft/Jahr Verfügbarkeit
    BibTip Andere fanden auch interessant ...
Schließen ⊗
Diese Webseite nutzt Cookies und das Analyse-Tool Matomo. Weitere Informationen finden Sie hier...