Filtern nach
Letzte Suchanfragen

Ergebnisse für *

Es wurden 4 Ergebnisse gefunden.

Zeige Ergebnisse 1 bis 4 von 4.

Sortieren

  1. Java 8 recipes
    [apply proven solutions to speed up your Java 8 development]
    Autor*in: Juneau, Josh
    Erschienen: 2014
    Verlag:  Apress, New York, NY

    Humboldt-Universität zu Berlin, Universitätsbibliothek, Jacob-und-Wilhelm-Grimm-Zentrum
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Buch (Monographie)
    ISBN: 9781430268277; 9781430268260
    RVK Klassifikation: ST 250
    Auflage/Ausgabe: 2. ed.
    Schriftenreihe: The expert's voice in Java
    Books for professionals by professionals
    Schlagworte: Java Standard Edition 8
    Umfang: XLVIII, 590 S., Ill.
  2. Java 8 Recipes
    Autor*in: Juneau, Josh
    Erschienen: 2014
    Verlag:  Apress, Berkeley, CA

    Java 8 Recipes offers solutions to common programming problems encountered while developing Java-based applications. Fully updated with the newest features and techniques available, Java 8 Recipes provides code examples involving Lambdas, embedded... mehr

    Helmut-Schmidt-Universität, Universität der Bundeswehr Hamburg, Universitätsbibliothek
    keine Fernleihe
    Staats- und Universitätsbibliothek Hamburg Carl von Ossietzky
    keine Fernleihe
    Technische Universität Hamburg, Universitätsbibliothek
    keine Fernleihe
    Technische Informationsbibliothek (TIB) / Leibniz-Informationszentrum Technik und Naturwissenschaften und Universitätsbibliothek
    keine Fernleihe
    Otto-von-Guericke-Universität, Universitätsbibliothek
    eBook Springer
    keine Fernleihe
    Otto-von-Guericke-Universität, Universitätsbibliothek, Medizinische Zentralbibliothek
    eBook Springer
    keine Fernleihe
    Hochschulbibliothek Friedensau
    Online-Ressource
    keine Fernleihe
    Bibliotheks-und Informationssystem der Carl von Ossietzky Universität Oldenburg (BIS)
    keine Fernleihe
    Bibliotheks-und Informationssystem der Carl von Ossietzky Universität Oldenburg (BIS)
    keine Fernleihe
    Bibliotheks-und Informationssystem der Carl von Ossietzky Universität Oldenburg (BIS)
    keine Fernleihe

     

    Java 8 Recipes offers solutions to common programming problems encountered while developing Java-based applications. Fully updated with the newest features and techniques available, Java 8 Recipes provides code examples involving Lambdas, embedded scripting with Nashorn, the new date-time API, stream support, functional interfaces, and much more. Especial emphasis is given to features such as lambdas that are newly introduced in Java 8. Content is presented in the popular problem-solution format: Look up the programming problem that you want to solve. Read the solution. Apply the solution directly in your own code. Problem solved! The problem-solution approach sets Java 8 Recipes apart. Java 8 Recipes is focused less on the language itself and more on what you can do with it that is useful. The book respects your time by always focusing on a task that you might want to perform using the language. Solutions come first. Explanations come later. You are free to crib from the book and apply the code examples directly to your own projects. Covers the newly-released Java 8, including a brand new chapter on lambdas Focuses especially on up-and-coming technologies such as Project Nashorn and Java FX 2.0 Respects your time by focusing on practical solutions you can implement in your own code

     

    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Volltext (Lizenzpflichtig)
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Ebook
    Format: Online
    ISBN: 9781430268260
    Weitere Identifier:
    RVK Klassifikation: ST 250
    Auflage/Ausgabe: Second Edition
    Schriftenreihe: The expert's voice in Java
    Schlagworte: Computer science
    Umfang: Online-Ressource (XLIV, 800 p. 66 illus), online resource
    Bemerkung(en):

    Description based upon print version of record

    Contents at a Glance; Introduction; Chapter 1: Getting Started with Java 8; 1-1. Creating a Development Environment; Problem; Solution; How It Works; 1-2. Getting to "Hello, World"; Problem; Solution; How It Works; Packages; JavaBeans-Style Classes; The Main Program; 1-3. Compiling and Executing from the Command-line Interpreter; Problem; Solution; How It Works; 1-4. Declaring Simple Variables; Problem; Solution; How It Works; 1-5. Converting to and from a String; Problem; Solution; How It Works; 1-6. Passing Arguments via Command-Line Execution; Problem; Solution; How It Works

    1-7. Accepting Input from the KeyboardProblem; Solution; How It Works; 1-8. Documenting Your Code; Problem; Solution; How It Works; Formatting the Documentation; Executing the Tool; 1-9. Organizing Code with Packages; Problem; Solution; How It Works; 1-10. Configuring the CLASSPATH; Problem; Solution; How It Works; 1-11. Reading Environment Variable s; Problem; Solution; How It Works; Summary; Chapter 2: New Features of Java 8; Java Language Enhancements; 2-1. Passing Functionality as a Method Argument; Problem; Solution; How It Works

    2-2. Calling On an Existing Method from a Lambda ExpressionProblem; Solution; How It Works; 2-3. Providing a Default Method Implementation in an Interface; Problem; Solution; How It Works; 2-4. Applying the Same Annotation Multiple Times in a Declaration or Type Use; Problem; Solution; How It Works; Date-Time API; 2-5. Incorporating the Current Date and Time; Problem; Solution; How It Works; 2-6. Obtaining a Date from a Specified String; Problem; Solution; How It Works; 2-7. Performing Date-Time Calculations; Problem; Solution; How It Works; Streams API

    2-8. Iterating Over a Collection of DataProblem; Solution; How It Works; JavaFX; 2-9. Embedding Swing in JavaFX; Problem; Solution; How It Works; 2-10. Adding a DatePicker; Problem; Solution; How It Works; 2-11. Printing from JavaFX; Problem; Solution; How It Works; Scripting; 2-12. Embedding JavaScript in Your Java Application; Problem; Solution; How It Works; 2-13. Executing JavaScript from the Command-Line; Problem; Solution; How It Works; Summary; Chapter 3: Strings; 3-1. Obtaining a Subsection of a String; Problem; Solution; How It Works; 3-2. Comparing Strings; Problem; Solution

    How It Works3-3. Trimming Whitespace; Problem; Solution; How It Works; 3-4. Changing the Case of a String; Problem; Solution; How It Works; 3-5. Concatenating Strings; Problem; Solution #1; Solution #2; Solution #3; How It Works; 3-6. Converting Strings to Numeric Values; Problem; Solution #1; Solution #2; How It Works; 3-7. Iterating Over the Characters of a String; Problem; Solution; How It Works; 3-8. Finding Text Matches; Problem; Solution #1; Solution #2; How It Works; 3-9. Replacing All Text Matches; Problem; Solution; How It Works

    3-10. Determining Whether a File Name Ends with a Given String

  3. Java 8 recipes
    Autor*in: Juneau, Josh
    Erschienen: 2014
    Verlag:  Apress, Berkeley, CA ; Imprint: Apress

    Hochschule Kempten, Hochschulbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule München, Bibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Technische Universität München, Universitätsbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Technische Hochschule Nürnberg Georg Simon Ohm, Bibliothek
    keine Ausleihe von Bänden, nur Papierkopien werden versandt
    Hochschule für angewandte Wissenschaften Würzburg-Schweinfurt, Abteilungsbibliothek Schweinfurt
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule für angewandte Wissenschaften Würzburg-Schweinfurt, Bibliotheksleitung und Zentralbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Volltext (URL des Erstveröffentlichers)
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Ebook
    Format: Online
    ISBN: 9781430268260
    Weitere Identifier:
    RVK Klassifikation: ST 250
    Auflage/Ausgabe: Second edition
    Schlagworte: Java Standard Edition 8
    Umfang: XLIV, 800 Seiten, Illustrationen
  4. Java 8 Recipes
    Autor*in: Juneau, Josh
    Erschienen: 2014
    Verlag:  Apress, Berkeley, CA

    Hochschule für Technik und Wirtschaft Dresden, Bibliothek
    eBook Springer
    keine Fernleihe
    Hochschule Furtwangen University. Informatik, Technik, Wirtschaft, Medien. Campus Furtwangen, Bibliothek
    eBook Springer
    keine Fernleihe
    Bibliothek LIV HN Sontheim
    Springer E-Book
    keine Fernleihe
    Duale Hochschule Baden-Württemberg Stuttgart, Campus Horb, Bibliothek
    eBook Springer
    keine Fernleihe
    Karlsruher Institut für Technologie, KIT-Bibliothek
    keine Fernleihe
    Karlsruher Institut für Technologie, KIT-Bibliothek
    keine Fernleihe
    Bibliotheksservice-Zentrum Baden-Württemberg (BSZ)
    keine Fernleihe
    HTWG Hochschule Konstanz Technik, Wirtschaft und Gestaltung, Bibliothek
    eBook Springer
    keine Fernleihe
    Duale Hochschule Baden-Württemberg Lörrach, Zentralbibliothek
    eBook Springer
    keine Fernleihe
    Duale Hochschule Baden-Württemberg Lörrach, Zweigbibliothek
    eBook Springer
    keine Fernleihe
    Duale Hochschule Baden-Württemberg Mannheim, Bibliothek
    eBook Springer
    keine Fernleihe
    Hochschule Mannheim, Hochschulbibliothek
    eBook Springer
    keine Fernleihe
    Universitätsbibliothek Mannheim
    keine Fernleihe
    Universitätsbibliothek Mannheim
    keine Fernleihe
    Hochschule Offenburg, University of Applied Sciences, Bibliothek Campus Offenburg
    E-Book Springer
    keine Ausleihe von Bänden, nur Papierkopien werden versandt
    Duale Hochschule Baden-Württemberg Ravensburg, Bibliothek
    E-Book Springer
    keine Fernleihe
    Duale Hochschule Baden-Württemberg Stuttgart, Bibliothek
    eBook Springer
    keine Fernleihe
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Ebook
    Format: Online
    ISBN: 9781430268260
    Weitere Identifier:
    RVK Klassifikation: ST 250
    Auflage/Ausgabe: Second Edition
    Schriftenreihe: Array
    Schlagworte: Computer science; Computer Science
    Umfang: Online-Ressource (XLIV, 800 p. 66 illus, online resource)