Filtern nach
Letzte Suchanfragen

Ergebnisse für *

Es wurden 3 Ergebnisse gefunden.

Zeige Ergebnisse 1 bis 3 von 3.

Sortieren

  1. Java 9 recipes
    a problem-solution approach
    Autor*in: Juneau, Josh
    Erschienen: [2017]; © 2017
    Verlag:  Apress, [New York, NY]

    Hochschule für Technik und Wirtschaft Berlin, Hochschulbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    TU Berlin, Universitätsbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Brandenburgische Technische Universität Cottbus - Senftenberg, Universitätsbibliothek
    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: 9781484219768
    Weitere Identifier:
    RVK Klassifikation: ST 250
    Auflage/Ausgabe: Third edition
    Schlagworte: Computer science; Computer programming; Programming languages (Electronic computers); Computer Science; Java; Programming Languages, Compilers, Interpreters; Programming Techniques; Informatik; Java Standard Edition 9
    Umfang: 1 Online-Ressource (xlix, 626 Seiten), Illustrationen
  2. Java 9 recipes
    a problem-solution approach
    Autor*in: Juneau, Josh
    Erschienen: 2017
    Verlag:  Apress, Berkeley, CA

    Contents at a Glance -- Contents -- About the Author -- About the Technical Reviewer -- Acknowledgments -- Introduction -- Chapter 1: Getting Started with Java 9 -- 1-1. Creating a Development Environment -- Problem -- Solution -- How It Works --... mehr

    Staats- und Universitätsbibliothek Bremen
    keine Fernleihe
    Universitätsbibliothek Kiel, Zentralbibliothek
    keine Fernleihe
    Hochschulbibliothek Friedensau
    Online-Ressource
    keine Fernleihe
    Universität Ulm, Kommunikations- und Informationszentrum, Bibliotheksservices
    keine Fernleihe

     

    Contents at a Glance -- Contents -- About the Author -- About the Technical Reviewer -- Acknowledgments -- Introduction -- Chapter 1: Getting Started with Java 9 -- 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. Configuring the CLASSPATH -- Problem -- Solution -- How It Works -- 1-4. Organizing Code with Packages -- Problem -- Solution -- How It Works -- 1-5. Declaring Variables and Access Modifiers -- Problem -- Solution -- How It Works -- 1-6. Compiling and Executing from the Command-Line or Terminal Interpreter -- Problem -- Solution -- How It Works -- 1-7. Developing Within the Interactive jShell -- Problem -- Solution -- How It Works -- 1-8. Converting to and from a String -- Problem -- Solution -- How It Works -- 1-9. Passing Arguments via Command-Line Execution -- Problem -- Solution -- How It Works -- 1-10. Executing a Script via the jShell -- Problem -- Solution -- How It Works -- 1-11. Accepting Input from the Keyboard -- Problem -- Solution -- How It Works -- 1-12. Documenting Your Code -- Problem -- Solution -- How It Works -- Formatting the Documentation -- Executing the Tool -- 1-13. Reading Environment Variables -- Problem -- Solution -- How It Works -- Summary -- Chapter 2: Java 9 Enhancements -- 2-1. Avoiding Redundancy in Interface Code -- Problem -- Solution -- How It Works -- 2-2. Creating Modules for Simplifying and Code Reuse -- Problem -- Solution -- How It Works -- 2-3. Easily Retrieving Information on OS Processes -- Problem -- Solution -- How It Works -- 2-4. Handling Errors with Ease -- Problem -- Solution -- How It Works -- 2-5. Filtering Data Before and After a Condition with Streams -- Problem -- Solution -- How It Works 2-6. Developing a Concise HTTP Client -- Problem -- Solution -- How It Works -- 2-7. Redirecting Platform Logs -- Problem -- Solution -- How It Works -- 2-8. Utilizing Factory Methods to Create Immutable Collections -- Problem -- Solution -- How It Works -- Summary -- Chapter 3: Strings -- Compact Strings: Java 9 String Enhancements -- 3-1. Obtaining a Subsection of a String -- Problem -- Solution -- How It Works -- 3-2. Comparing Strings -- Problem -- Solution -- How It Works -- 3-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 Suffix Matches a Given String -- Problem -- Solution -- How It Works -- 3-11. Making a String That Can Contain Dynamic Information -- Problem -- Solution 1 -- Solution 2 -- How It Works -- Summary -- Chapter 4: Numbers and Dates -- 4-1. Rounding Float and Double Values to Integers -- Problem -- Solution -- How It Works -- 4-2. Formatting Double and Long Decimal Values -- Problem -- Solution -- How It Works -- 4-3. Comparing int Values -- Problem -- Solution 1 -- Solution 2 -- How It Works -- 4-4. Comparing Floating-Point Numbers -- Problem -- Solution 1 -- Solution 2 -- How It Works -- 4-5. Calculating Monetary Values -- Problem -- Solution 1 -- Solution 2 -- How It Works -- 4-6. Randomly Generating Values -- Problem -- Solution 1 -- Solution 2 -- How It Works 4-7. Obtaining the Current Date Without Time -- Problem -- Solution -- How It Works -- 4-8. Obtaining a Date Object Given Date Criteria -- Problem -- Solution -- How It Works -- 4-9. Obtaining a Year-Month-Day Date Combination -- Problem -- Solution 1 -- Solution 2 -- How It Works -- 4-10. Obtaining and Calculating Times Based on the Current Time -- Problem -- Solution -- How It Works -- 4-11. Obtaining and Using the Date and Time Together -- Problem -- Solution 1 -- Solution 2 -- Solution 3 -- How It Works -- 4-12. Obtaining a Machine Timestamp -- Problem -- Solution -- How It Works -- 4-13. Converting Dates and Times Based on the Time Zone -- Problem -- Solution -- How It Works -- 4-14. Comparing Two Dates -- Problem -- Solution -- How It Works -- 4-15. Finding the Interval Between Dates and Times -- Problem -- Solution 1 -- Solution 2 -- Solution 3 -- How It Works -- 4-16. Obtaining Date-Time from a Specified String -- Problem -- Solution -- How It Works -- 4-17. Formatting Dates for Display -- Problem -- Solution 1 -- Solution 2 -- How It Works -- 4-18. Writing Readable Numeric Literals -- Problem -- Solution -- How It Works -- 4-19. Declaring Binary Literals -- Problem -- Solution -- How It Works -- Summary -- Chapter 5: Object-Oriented Java -- 5-1. Controlling Access to Members of a Class -- Problem -- Solution -- How It Works -- 5-2. Making Private Fields Accessible to Other Classes -- Problem -- Solution -- How It Works -- 5-3. Creating a Class with a Single Instance -- Problem -- Solution 1 -- Solution 2 -- How It Works -- 5-4. Generating Instances of a Class -- Problem -- Solution -- How It Works -- 5-5. Creating Reusable Objects -- Problem -- Solution -- How It Works -- 5-6. Defining an Interface for a Class -- Problem -- Solution -- How It Works -- 5-7. Modifying Interfaces Without Breaking Existing Code -- Problem -- Solution How It Works -- 5-8. Constructing Instances of the Same Class with Different Values -- Problem -- Solution -- How It Works -- 5-9. Interacting with a Class via Interfaces -- Problem -- Solution -- How It Works -- 5-10. Making a Class Cloneable -- Problem -- Solution -- How It Works -- 5-11. Comparing Objects -- Problem -- Solution 1 -- Solution 2 -- How It Works -- 5-12. Extending the Functionality of a Class -- Problem -- Solution -- How It Works -- 5-13. Defining a Template for Classes to Extend -- Problem -- Solution -- How It Works -- 5-14. Increasing Class Encapsulation -- Problem -- Solution -- How It Works -- Summary -- Chapter 6: Lambda Expressions -- 6-1. Writing a Simple Lambda Expression -- Problem -- Solution -- How It Works -- 6-2. Enabling the Use of Lambda Expressions -- Problem -- Solution 1 -- Solution 2 -- How It Works -- 6-3. Invoking Existing Methods by Name -- Problem -- Solution -- How It Works -- 6-4. Sorting with Fewer Lines of Code -- Problem -- Solution 1 -- Solution 2 -- How It Works -- 6-5. Filtering a Collection of Data -- Problem -- Solution -- How It Works -- 6-6. Implementing Runnable -- Problem -- Solution -- How It Works -- 6-7. Replacing Anonymous Inner Classes -- Problem -- Solution -- How It Works -- 6-8. Accessing Class Variables from a Lambda Expression -- Problem -- Solution -- How It Works -- 6-9. Passing Lambda Expressions to Methods -- Problem -- Solution -- How It Works -- Summary -- Chapter 7: Data Sources and Collections -- 7-1. Defining a Fixed Set of Related Constants -- Problem -- Solution -- How It Works -- 7-2. Designing Intelligent Constants -- Problem -- Solution -- How It Works -- 7-3. Executing Code Based on a Specified Value -- Problem -- Solution -- How It Works -- 7-4. Working with Fix-Sized Arrays -- Problem -- Solution -- How It Works 7-5. Safely Enabling Types or Methods to Operate on Objects of Various Types -- Problem -- Solution -- How It Works -- 7-6. Working with Dynamic Arrays -- Problem -- Solution -- How It Works -- 7-7. Making Your Objects Iterable -- Problem -- Solution -- How It Works -- 7-8. Iterating Over Collections -- Problem -- Solution -- How It Works -- 7-9. Iterating Over a Map -- Problem -- Solution -- How It Works -- 7-10. Executing Streams in Parallel -- Problem -- Solution -- How It Works -- Summary -- Chapter 8: Input and Output -- 8-1. Serializing Java Objects -- Problem -- Solution -- How It Works -- 8-2. Serializing Java Objects More Efficiently -- Problem -- Solution -- How It Works -- 8-3. Serializing Java Objects as XML -- Problem -- Solution -- How It Works -- 8-4. Creating a Socket Connection and Sending Serializable Objects Across the Wire -- Problem -- Solution -- How It Works -- 8-5. Obtaining the Java Execution Path -- Problem -- Solution -- How It Works -- 8-6. Copying a File -- Problem -- Solution -- How It Works -- 8-7. Moving a File -- Problem -- Solution -- How It Works -- 8-8. Creating a Directory -- Problem -- Solution 1 -- Solution 2 -- How It Works -- 8-9. Iterating Over Files in a Directory -- Problem -- Solution -- How It Works -- 8-10. Querying (and Setting) File Metadata -- Problem -- Solution -- How It Works -- 8-11. Monitoring a Directory for Content Changes -- Problem -- Solution -- How It Works -- 8-12. Reading Property Files -- Problem -- Solution -- How It Works -- 8-13. Uncompressing Files -- Problem -- Solution -- How It Works -- 8-14. Managing Operating System Processes -- Problem -- Solution -- How It Works -- Summary -- Chapter 9: Exceptions and Logging -- 9-1. Catching Exceptions -- Problem -- Solution -- How It Works -- 9-2. Guaranteeing a Block of Code Is Executed -- Problem -- Solution -- How It Works 9-3. Throwing Exceptions

     

    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Volltext (Lizenzpflichtig)
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Ebook
    Format: Online
    ISBN: 9781484219768
    RVK Klassifikation: ST 250
    Auflage/Ausgabe: Third edition
    Schlagworte: Computer science; Computer science; Electronic books
    Umfang: 1 Online-Ressource (661 pages)
  3. Java 9 recipes
    a problem-solution approach
    Autor*in: Juneau, Josh
    Erschienen: [2017]; © 2017
    Verlag:  Apress, [New York, NY]

    Ostbayerische Technische Hochschule Amberg-Weiden, Hochschulbibliothek Amberg
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule Augsburg, Bibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Universitätsbibliothek Bamberg
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Universitätsbibliothek Bayreuth
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Universitätsbibliothek Eichstätt-Ingolstadt
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Universitätsbibliothek Erlangen-Nürnberg, Hauptbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschulbibliothek Ingolstadt
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule Kempten, Hochschulbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule Landshut, Hochschule für Angewandte Wissenschaften, Bibliothek
    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
    Universität der Bundeswehr 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
    OTH- Ostbayerische Technische Hochschule Regensburg, Hochschulbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Technische Hochschulbibliothek Rosenheim
    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
    Universitätsbibliothek Würzburg
    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: 9781484219768
    Weitere Identifier:
    RVK Klassifikation: ST 250
    Auflage/Ausgabe: Third edition
    Schlagworte: Computer science; Computer programming; Programming languages (Electronic computers); Computer Science; Java; Programming Languages, Compilers, Interpreters; Programming Techniques; Informatik; Java Standard Edition 9
    Umfang: 1 Online-Ressource (xlix, 626 Seiten), Illustrationen