SØG - mellem flere end 8 millioner bøger:

Søg på: Titel, forfatter, forlag - gerne i kombination.
Eller blot på isbn, hvis du kender dette.

Viser: The Ruby Programming Language - Everything You Need to Know

The Ruby Programming Language, 1. udgave
Søgbar e-bog

The Ruby Programming Language Vital Source e-bog

David Flanagan og Yukihiro Matsumoto
(2008)
O'Reilly Media, Inc
348,00 kr.
Leveres umiddelbart efter køb
The Ruby Programming Language, 1. udgave
Søgbar e-bog

The Ruby Programming Language Vital Source e-bog

David Flanagan og Yukihiro Matsumoto
(2008)
O'Reilly Media, Inc
348,00 kr.
Leveres umiddelbart efter køb
The Ruby Programming Language - Everything You Need to Know

The Ruby Programming Language

Everything You Need to Know
David Flanagan og Yukihiro Matsumoto
(2008)
Sprog: Engelsk
O'Reilly Media, Incorporated
453,00 kr.
ikke på lager, Bestil nu og få den leveret
om ca. 10 hverdage

Detaljer om varen

  • 1. Udgave
  • Vital Source searchable e-book (Fixed pages): 444 sider
  • Udgiver: O'Reilly Media, Inc (Januar 2008)
  • Forfattere: David Flanagan og Yukihiro Matsumoto
  • ISBN: 9780596520168
The Ruby Programming Language is the authoritative guide to Ruby and provides comprehensive coverage of versions 1.8 and 1.9 of the language. It was written (and illustrated!) by an all-star team: David Flanagan, bestselling author of programming language "bibles" (including JavaScript: The Definitive Guide and Java in a Nutshell) and committer to the Ruby Subversion repository. Yukihiro "Matz" Matsumoto, creator, designer and lead developer of Ruby and author of Ruby in a Nutshell, which has been expanded and revised to become this book. why the lucky stiff, artist and Ruby programmer extraordinaire.This book begins with a quick-start tutorial to the language, and then explains the language in detail from the bottom up: from lexical and syntactic structure to datatypes to expressions and statements and on through methods, blocks, lambdas, closures, classes and modules. The book also includes a long and thorough introduction to the rich API of the Ruby platform, demonstrating -- with heavily-commented example code -- Ruby's facilities for text processing, numeric manipulation, collections, input/output, networking, and concurrency. An entire chapter is devoted to Ruby's metaprogramming capabilities. The Ruby Programming Language documents the Ruby language definitively but without the formality of a language specification. It is written for experienced programmers who are new to Ruby, and for current Ruby programmers who want to challenge their understanding and increase their mastery of the language.
Licens varighed:
Bookshelf online: 5 år fra købsdato.
Bookshelf appen: ubegrænset dage fra købsdato.

Udgiveren oplyser at følgende begrænsninger er gældende for dette produkt:
Print: 10 sider kan printes ad gangen
Copy: højest 10 sider i alt kan kopieres (copy/paste)

Detaljer om varen

  • 1. Udgave
  • Vital Source searchable e-book (Reflowable pages): 448 sider
  • Udgiver: O'Reilly Media, Inc (Januar 2008)
  • Forfattere: David Flanagan og Yukihiro Matsumoto
  • ISBN: 9780596554651
The Ruby Programming Language is the authoritative guide to Ruby and provides comprehensive coverage of versions 1.8 and 1.9 of the language. It was written (and illustrated!) by an all-star team: David Flanagan, bestselling author of programming language "bibles" (including JavaScript: The Definitive Guide and Java in a Nutshell) and committer to the Ruby Subversion repository. Yukihiro "Matz" Matsumoto, creator, designer and lead developer of Ruby and author of Ruby in a Nutshell, which has been expanded and revised to become this book. why the lucky stiff, artist and Ruby programmer extraordinaire.This book begins with a quick-start tutorial to the language, and then explains the language in detail from the bottom up: from lexical and syntactic structure to datatypes to expressions and statements and on through methods, blocks, lambdas, closures, classes and modules. The book also includes a long and thorough introduction to the rich API of the Ruby platform, demonstrating -- with heavily-commented example code -- Ruby's facilities for text processing, numeric manipulation, collections, input/output, networking, and concurrency. An entire chapter is devoted to Ruby's metaprogramming capabilities. The Ruby Programming Language documents the Ruby language definitively but without the formality of a language specification. It is written for experienced programmers who are new to Ruby, and for current Ruby programmers who want to challenge their understanding and increase their mastery of the language.
Licens varighed:
Bookshelf online: 5 år fra købsdato.
Bookshelf appen: ubegrænset dage fra købsdato.

Udgiveren oplyser at følgende begrænsninger er gældende for dette produkt:
Print: -1 sider kan printes ad gangen
Copy: højest -1 sider i alt kan kopieres (copy/paste)

Detaljer om varen

  • Paperback: 444 sider
  • Udgiver: O'Reilly Media, Incorporated (Februar 2008)
  • Forfattere: David Flanagan og Yukihiro Matsumoto
  • ISBN: 9780596516178

The Ruby Programming Language is the authoritative guide to Ruby and provides comprehensive coverage of versions 1.8 and 1.9 of the language. It was written (and illustrated!) by an all-star team:

  • David Flanagan, bestselling author of programming language "bibles" (including JavaScript: The Definitive Guide and Java in a Nutshell) and committer to the Ruby Subversion repository.




  • Yukihiro "Matz" Matsumoto, creator, designer and lead developer of Ruby and author of Ruby in a Nutshell, which has been expanded and revised to become this book.




  • why the lucky stiff, artist and Ruby programmer extraordinaire.
This book begins with a quick-start tutorial to the language, and then explains the language in detail from the bottom up: from lexical and syntactic structure to datatypes to expressions and statements and on through methods, blocks, lambdas, closures, classes and modules.



The book also includes a long and thorough introduction to the rich API of the Ruby platform, demonstrating -- with heavily-commented example code -- Ruby's facilities for text processing, numeric manipulation, collections, input/output, networking, and concurrency. An entire chapter is devoted to Ruby's metaprogramming capabilities.



The Ruby Programming Language documents the Ruby language definitively but without the formality of a language specification. It is written for experienced programmers who are new to Ruby, and for current Ruby programmers who want to challenge their understanding and increase their mastery of the language.



Preface; Acknowledgments; Conventions Used in This Book; Using Code Examples; How to Contact Us; Safari® Enabled;
Chapter 1: Introduction;
1.1 A Tour of Ruby;
1.2 Try Ruby;
1.3 About This Book;
1.4 A Sudoku Solver in Ruby;
Chapter 2: The Structure and Execution of Ruby Programs;
2.1 Lexical Structure;
2.2 Syntactic Structure;
2.3 File Structure;
2.4 Program Encoding;
2.5 Program Execution;
Chapter 3: Datatypes and Objects;
3.1 Numbers;
3.2 Text;
3.3 Arrays;
3.4 Hashes;
3.5 Ranges;
3.6 Symbols;
3.7 True, False, and Nil;
3.8 Objects;
Chapter 4: Expressions and Operators;
4.1 Literals and Keyword Literals;
4.2 Variable References;
4.3 Constant References;
4.4 Method Invocations;
4.5 Assignments;
4.6 Operators;
Chapter 5: Statements and Control Structures;
5.1 Conditionals;
5.2 Loops;
5.3 Iterators and Enumerable Objects;
5.4 Blocks;
5.5 Altering Control Flow;
5.6 Exceptions and Exception Handling;
5.7 BEGIN and END;
5.8 Threads, Fibers, and Continuations;
Chapter 6: Methods, Procs, Lambdas, and Closures;
6.1 Defining Simple Methods;
6.2 Method Names;
6.3 Methods and Parentheses;
6.4 Method Arguments;
6.5 Procs and Lambdas;
6.6 Closures;
6.7 Method Objects;
6.8 Functional Programming;
Chapter 7: Classes and Modules;
7.1 Defining a Simple Class;
7.2 Method Visibility: Public, Protected, Private;
7.3 Subclassing and Inheritance;
7.4 Object Creation and Initialization;
7.5 Modules;
7.6 Loading and Requiring Modules;
7.7 Singleton Methods and the Eigenclass;
7.8 Method Lookup;
7.9 Constant Lookup;
Chapter 8: Reflection and Metaprogramming;
8.1 Types, Classes, and Modules;
8.2 Evaluating Strings and Blocks;
8.3 Variables and Constants;
8.4 Methods;
8.5 Hooks;
8.6 Tracing;
8.7 ObjectSpace and GC;
8.8 Custom Control Structures;
8.9 Missing Methods and Missing Constants;
8.10 Dynamically Creating Methods;
8.11 Alias Chaining;
8.12 Domain-Specific Languages;
Chapter 9: The Ruby Platform;
9.1 Strings;
9.2 Regular Expressions;
9.3 Numbers and Math;
9.4 Dates and Times;
9.5 Collections;
9.6 Files and Directories;
9.7 Input/Output;
9.8 Networking;
9.9 Threads and Concurrency;
Chapter 10: The Ruby Environment;
10.1 Invoking the Ruby Interpreter;
10.2 The Top-Level Environment;
10.3 Practical Extraction and Reporting Shortcuts;
10.4 Calling the OS;
10.5 Security;Colophon;
De oplyste priser er inkl. moms

Polyteknisk Boghandel

har gennem mere end 50 år været studieboghandlen på DTU og en af Danmarks førende specialister i faglitteratur.

 

Vi lagerfører et bredt udvalg af bøger, ikke bare inden for videnskab og teknik, men også f.eks. ledelse, IT og meget andet.

Læs mere her


Trykt eller digital bog?

Ud over trykte bøger tilbyder vi tre forskellige typer af digitale bøger:

 

Vital Source Bookshelf: En velfungerende ebogsplatform, hvor bogen downloades til din computer og/eller mobile enhed.

 

Du skal bruge den gratis Bookshelf software til at læse læse bøgerne - der er indbygget gode værktøjer til f.eks. søgning, overstregning, notetagning mv. I langt de fleste tilfælde vil du samtidig have en sideløbende 1825 dages online adgang. Læs mere om Vital Source bøger

 

Levering: I forbindelse med købet opretter du et login. Når du har installeret Bookshelf softwaren, logger du blot ind og din bog downloades automatisk.

 

 

Adobe ebog: Dette er Adobe DRM ebøger som downloades til din lokale computer eller mobil enhed.

 

For at læse bøgerne kræves særlig software, som understøtter denne type. Softwaren er gratis, men du bør sikre at du har rettigheder til installere software på den maskine du påtænker at anvende den på. Læs mere om Adobe DRM bøger

 

Levering: Et download link sendes pr email umiddelbart efter købet.

 


Ibog: Dette er en online bog som kan læses på udgiverens website. 

Der kræves ikke særlig software, bogen læses i en almindelig browser.

 

Levering: Vores medarbejder sender dig en adgangsnøgle pr email.

 

Vi gør opmærksom på at der ikke er retur/fortrydelsesret på digitale varer.