Ergebnisse für *

Es wurden 34 Ergebnisse gefunden.

Zeige Ergebnisse 1 bis 25 von 34.

Sortieren

  1. Middleware in Java
    Leitfaden zum Entwurf verteilter Anwendungen - Implementierung von verteilten Systemen über JMS - verteilte Objekte über RMI und CORBA
    Erschienen: 2005
    Verlag:  Vieweg, Wiesbaden

    Freie Universität 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
    Beteiligt: Mathes, Markus (Verfasser)
    Sprache: Deutsch
    Medientyp: Ebook
    Format: Online
    ISBN: 9783322802620
    Weitere Identifier:
    RVK Klassifikation: ST 250 ; ST 235 ; ST 250 J35
    DDC Klassifikation: Datenverarbeitung; Informatik (004)
    Auflage/Ausgabe: 1. Aufl.
    Schriftenreihe: IT-Professional
    Schlagworte: RMI; Verteiltes System; CORBA; Java 2 Standard Edition 5.0; Java Message Service; Middleware; Thread; Synchronisierung; Client-Server-Konzept; Serialisierbarkeit
    Umfang: 1 Online-Ressource, Ill., graph. Darst.
  2. Pro Java 9 Games Development
    Leveraging the JavaFX APIs
    Erschienen: 2017
    Verlag:  Apress, Berkeley, CA

    Hochschule für Technik und Wirtschaft Berlin, Hochschulbibliothek
    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: 9781484209738
    Weitere Identifier:
    RVK Klassifikation: ST 250 J35
    Schlagworte: Computer science; Computer Science; Game Development; Java; Computerspielherstellung; Java Standard Edition 9
    Umfang: 1 Online-Ressource (XXVIII, 633 Seiten), 474 Illustrationen (farbig)
  3. Eclipse
    Kennenlernen. Verstehen. Effizient nutzen.
    Erschienen: [2019]
    Verlag:  Hanser, München

    Humboldt-Universität zu Berlin, Universitätsbibliothek, Jacob-und-Wilhelm-Grimm-Zentrum
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Universität Potsdam, 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: Deutsch
    Medientyp: Ebook
    Format: Online
    ISBN: 9783446457294
    Weitere Identifier:
    RVK Klassifikation: ST 250 ; ST 232 ; ST 250 J35
    DDC Klassifikation: Datenverarbeitung; Informatik (004)
    Schlagworte: Eclipse 4.8; Java <Programmiersprache>; Eclipse <Programmierumgebung>; Programmierumgebung; Java Standard Edition 9
    Weitere Schlagworte: Eclipse; Java; Programmierung; Refactoring; Softwareentwicklung; Webanwendungen
    Umfang: 1 Online-Ressource (XVI, 302 Seiten), Illustrationen
    Bemerkung(en):

    E-Book 2018 erschienen

  4. Java projects
    learn the fundamentals of Java 11 programming by building industry grade practical projects
    Autor*in: Verhas, Peter
    Erschienen: August 2018
    Verlag:  Packt, Birmingham ; Mumbai

    Java is one of the software languages most commonly used by programmers and developers. This book covers essential concepts in Java by showing you how to implement them in various applications. You'll learn about Java 18.9's newest features and... mehr

    Humboldt-Universität zu Berlin, Universitätsbibliothek, Jacob-und-Wilhelm-Grimm-Zentrum
    uneingeschränkte Fernleihe, Kopie und Ausleihe

     

    Java is one of the software languages most commonly used by programmers and developers. This book covers essential concepts in Java by showing you how to implement them in various applications. You'll learn about Java 18.9's newest features and develop the skills required for building robust, easily scalable, and maintainable code in Java Cover -- Title Page -- Copyright and Credits -- Packt Upsell -- Contributors -- Acknowledgments -- Table of Contents -- Preface -- Chapter 1: Getting Started with Java 11 -- Getting started with Java -- Version numbers -- Installing Java -- Installation on Windows -- Installation on macOS -- Installation on Linux -- Setting JAVA_HOME -- Executing jshell -- Looking at the bytecode -- Packaging classes into a JAR file -- Managing the running Java application -- Using an IDE -- NetBeans -- Eclipse -- IntelliJ -- IDE services -- IDE screen structure -- Editing files -- Managing projects -- Building the code and running it -- Debugging Java -- Summary -- Chapter 2: The First Real Java Program - Sorting Names -- Getting started with sorting -- Bubble sort -- Getting started with project structure and build tools -- Make -- Ant -- Installing Ant -- Using Ant -- Maven -- Installing Maven -- Using Maven -- Gradle -- Installing Gradle -- Setting up the project with Maven -- Coding the sort -- Understanding the algorithm and language constructs -- Blocks -- Variables -- Types -- Arrays -- Expressions -- Loops -- Conditional execution -- Final variables -- Classes -- Inner, nested, local, and anonymous classes -- Packages -- Methods -- Interfaces -- Argument passing -- Fields -- Modifiers -- Object initializers and constructors -- Compiling and running the program -- Summary -- Chapter 3: Optimizing the Sort - Making Code Professional -- The general sorting program -- A brief overview of various sorting algorithms -- Quicksort -- Project structure and build tools -- Maven dependency management -- Coding the sort -- Creating the interfaces -- Creating BubbleSort -- Architectural considerations -- Creating unit tests -- Adding JUnit as a dependency -- Writing the BubbleSortTest class -- Good unit tests -- A good unit test is readable -- Unit tests are fast Unit tests are deterministic -- Assertions should be as simple as possible -- Unit tests are isolated -- Unit tests cover the code -- Refactoring the test -- Collections with wrong elements -- Handling exceptions -- Generics -- Test-Driven Development -- Implementing QuickSort -- The partitioning class -- Recursive sorting -- Non-recursive sorting -- Implementing the API class -- Creating modules -- Why modules are needed -- What is a Java module? -- Summary -- Chapter 4: Mastermind - Creating a Game -- The game -- The model of the game -- Java collections -- Interface collection -- Set -- Hash functions -- The equals method -- The hashCode method -- Implementing equals and hashCode -- HashSet -- EnumSet -- LinkedHashSet -- SortedSet -- NavigableSet -- TreeSet -- List -- LinkedList -- ArrayList -- Queue -- Deque -- Map -- HashMap -- IdentityHashMap -- Dependency injection -- Implementing the game -- ColorManager -- The class color -- JavaDoc and code comments -- Row -- Table -- Guesser -- UniqueGuesser -- GeneralGuesser -- The Game class -- Creating an integration test -- Summary -- Chapter 5: Extending the Game - Run Parallel, Run Faster -- How to make Mastermind parallel -- Refactoring -- Processes -- Threads -- Fibers -- java.lang.Thread -- Pitfalls -- Deadlocks -- Race conditions -- Overused locks -- Starving -- ExecutorService -- Completable future -- ForkJoinPool -- Variable access -- The CPU heartbeat -- Volatile variables -- Synchronized block -- Wait and notify -- Lock -- Condition -- ReentrantLock -- ReentrantReadWriteLock -- Atomic variables -- BlockingQueue -- LinkedBlockingQueue -- LinkedBlockingDeque -- ArrayBlockingQueue -- LinkedTransferQueue -- IntervalGuesser -- ParallelGamePlayer -- Microbenchmarking -- Summary -- Chapter 6: Making Our Game Professional - Do it as a Web App -- Web and network -- IP -- TCP/IP -- DNS

     

    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Ebook
    Format: Online
    ISBN: 9781789130690
    RVK Klassifikation: ST 250 ; ST 250 J35
    Auflage/Ausgabe: Second edition
    Schlagworte: Java Standard Edition 11
    Weitere Schlagworte: Java (Computer program language)
    Umfang: 1 Online-Ressource (vii, 498 Seiten), Illustrationen
  5. Liferay Portal 5.2 systems development
    build Java-based custom intranet systems on top of Liferay Portal
    Autor*in:
    Erschienen: c2009
    Verlag:  Packt Pub, Birmingham, U.K

    Liferay portal is one of the most mature portal frameworks in the market, offering many key business benefits that involve personalization, customization, and workflow. If you are a Java developer who wants to build custom web sites and intranet... mehr

    Zugang:
    Aggregator (lizenzpflichtig)
    Hochschule Aalen, Bibliothek
    E-Book EBSCO
    keine Fernleihe
    Hochschule Esslingen, Bibliothek
    E-Book Ebsco
    keine Fernleihe
    Otto-von-Guericke-Universität, Universitätsbibliothek
    eBook EBSCO AC
    keine Fernleihe
    Hochschule Offenburg, University of Applied Sciences, Bibliothek Campus Offenburg
    E-Book EBSCO
    keine Fernleihe
    Saarländische Universitäts- und Landesbibliothek
    keine Fernleihe
    Universitätsbibliothek der Eberhard Karls Universität
    keine Fernleihe

     

    Liferay portal is one of the most mature portal frameworks in the market, offering many key business benefits that involve personalization, customization, and workflow. If you are a Java developer who wants to build custom web sites and intranet applications using Liferay portal, this is where your search ends. This book shows how Java developers can use Liferay as a framework to develop custom intranet systems, based on Liferay portal platform thus helping you to maximize your productivity gains. Get ready for a rich, friendly, intuitive and collaborative end-user experience! The author's experience customizing Liferay using Java enables him to explain in a clear and precise manner how to build custom systems on top of Liferay portal. Using this book you can customize Liferay into a single point of access to all an organization's data, content, web content, and other information from both existing in-house applications (HR, CRM) and external sources (such as Alfresco, FatWire, Magnolia, Vignette)

     

    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Quelle: Verbundkataloge
    Beteiligt: Yuan, Jonas X.; Sahat, Christianto; Rogers, Steve
    Sprache: Englisch
    Medientyp: Ebook
    Format: Online
    ISBN: 9781847194718; 1847194710
    RVK Klassifikation: ST 250 J35
    Schriftenreihe: From technologies to solutions
    Schlagworte: Intranets (Computer networks); Java (Computer program language); Intranets (Computer networks); Java (Computer program language); Intranets (Computer networks); Intranets (Computer networks); Java (Computer program language); Portal; Entwicklung; Java Standard Edition 6; Open Source; Unternehmen; Portal; COMPUTERS ; Networking ; Intranets & Extranets
    Umfang: Online Ressource (xiii, 528 p.), ill.
    Bemerkung(en):

    Title from title screen. - Includes index

    Title from title screen

  6. Der Weg zum Java-Profi
    Konzepte und Techniken für die professionelle Java-Entwicklung
    Erschienen: 2018
    Verlag:  dpunkt.verlag, Heidelberg

    Zugang:
    Aggregator (Lizenzpflichtig)
    Hochschule Aalen, Bibliothek
    E-Book dpunkt
    keine Fernleihe
    Hochschule für Gesundheit, Hochschulbibliothek
    Initiative E-Books.NRW
    keine Fernleihe
    Universitätsbibliothek Mannheim
    keine Fernleihe
    Hochschulbibliothek Reutlingen (Lernzentrum)
    eBook
    keine Fernleihe
    Hochschule der Medien, Bibliothek Standort Nobelstr.
    dpunkt-eBooks
    keine Fernleihe
    Universitätsbibliothek Stuttgart
    keine Fernleihe
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Quelle: Verbundkataloge
    Sprache: Deutsch
    Medientyp: Ebook
    Format: Online
    ISBN: 9783960883562; 9783960883579; 9783960883586
    RVK Klassifikation: ST 250 J35 ; ST 250
    Auflage/Ausgabe: 4., überarbeitete und aktualisierte Auflage
    Schlagworte: Entwurfsmuster; Java 8; Modularisierung; Unit Tests; Programmierstil; Java 9; Multithreading; Refactorings; Coding-Conventions; Java SE; Objektorientiertes Design; Lambdas; Collections; JDK 9; Jigsaw; Bad Smells; Codereviews; JDK 8; JavaFX
    Umfang: 1 Online-Ressource (xxvi, 1389 Seiten), Illustrationen, Diagramme
  7. Java 9 – die Neuerungen
    Syntax- und API-Erweiterungen und Modularisierung im Überblick
    Erschienen: [2018]; © 2018
    Verlag:  dpunkt.verlag, Heidelberg

    Zugang:
    Aggregator (Lizenzpflichtig)
    Hochschule Aalen, Bibliothek
    E-Book dpunkt
    keine Fernleihe
    Hochschule für Gesundheit, Hochschulbibliothek
    Initiative E-Books.NRW
    keine Fernleihe
    Universitätsbibliothek Mannheim
    keine Fernleihe
    Hochschulbibliothek Reutlingen (Lernzentrum)
    eBook
    keine Fernleihe
    Hochschule der Medien, Bibliothek Standort Nobelstr.
    dpunkt-eBooks
    keine Fernleihe
    Universitätsbibliothek Stuttgart
    keine Fernleihe
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Quelle: Verbundkataloge
    Sprache: Deutsch
    Medientyp: Ebook
    Format: Online
    ISBN: 9783960883784; 9783960883791; 9783960883807
    RVK Klassifikation: ST 250 J35 ; ST 250
    DDC Klassifikation: Datenverarbeitung; Informatik (004)
    Auflage/Ausgabe: 1. Auflage
    Schlagworte: Entwurfsmuster; Java 8; Modularisierung; Unit Tests; Programmierstil; Java 9; Multithreading; Refactorings; Coding-Conventions; Java SE; Objektorientiertes Design; Lambdas; Collections; JDK 9; Jigsaw; Bad Smells; Codereviews; JDK 8; JavaFX
    Umfang: 1 Online-Ressource (xvii, 357 Seiten), Diagramme, Illustrationen
  8. Pro J2ME Polish
    Open Source Wireless Java Tools Suite
    Erschienen: 2005
    Verlag:  Robert Virkus, Berkeley, CA

    * The primary book on the J2ME Polish open source tool* Written by Robert Virkus, the lead programmer and architect of J2ME Polish* Discusses every aspect of J2ME Polish in-depth, including installing, using, and extending* Includes hands-on... mehr

    Hochschulbibliothek Friedensau
    Online-Ressource
    keine Fernleihe

     

    * The primary book on the J2ME Polish open source tool* Written by Robert Virkus, the lead programmer and architect of J2ME Polish* Discusses every aspect of J2ME Polish in-depth, including installing, using, and extending* Includes hands-on tutorials that encourage the reader to apply their acquired knowledge Robert Virkus is the technical and managing architect and programmer for the open source project J2ME Polish. He is an internationally recognized J2ME expert and is a member of Mobile Solutions Group, Bremen, Germany. "Pro J2ME Polish is written for wireless and other mobile Java programmers who want to improve their efficiency and acquire in-depth knowledge about programming real world J2ME applications. It describes the leading open-source tool for tackling device differences and creating ""polished"" mobile applications. It also uncovers all common device limitations and quirks and explains how these can be circumvented. The book consists of a whole suite of tools for wireless programmers to use to optimize applications for multiple devices or to localize their applications in two simple steps. It also explains how to change the logging level for specific classes or packages, or to remove all logging parts completely from the application by setting simple switches. Moreover, the author includes a device database with all relevant data for programming in J2ME and provides a game API for MIDP/1.0 devices that is compatible with the MIDP/2.0 game, so readers can automatically port their game to MIDP/1.0 devices. And for programmers who want to use animated backgrounds, different designs for the application user interface, or Custom Items on MIDP/1.0 devices, this book explains in full detail why the GUI of J2ME is the key."

     

    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Ebook
    Format: Online
    ISBN: 9781430200451
    RVK Klassifikation: ST 250 J35
    Schriftenreihe: Pro
    Schlagworte: Computer Science; Software engineering
    Umfang: Online-Ressource, v.: digital
    Bemerkung(en):

    Includes index

    CONTENTS; Foreword; About the Author; About the Technical Reviewer; Acknowledgments; Introduction; PART 1: GETTING READY; ¦CHAPTER 1 Quick Setup Guide; ¦CHAPTER 2 Installing the Prerequisites; ¦CHAPTER 3 Installing J2ME Polish; ¦CHAPTER 4 Integrating J2ME Polish into IDEs; PART 2: USING J2ME POLISH; ¦CHAPTER 5 Getting to Know J2ME Polish; ¦CHAPTER 6 The Device Database; ¦CHAPTER 7 Building Applications; ¦CHAPTER 8 Preprocessing; ¦CHAPTER 9 The Logging Framework; ¦CHAPTER 10 Using the Utilities; ¦CHAPTER 11 Game Programming with J2ME Polish; ¦CHAPTER 12 Working with the GUI

    ¦CHAPTER 13 Extending J2ME PolishPART 3: PROGRAMMING IN THE REAL WORLD; ¦CHAPTER 14 Overview of the Wireless Market; ¦CHAPTER 15 Dancing Around Device Limitations; ¦CHAPTER 16 Optimizing Applications; PART 4: APPENDIX; ¦APPENDIX; ¦INDEX

    Electronic reproduction; Available via World Wide Web

  9. Einstieg in Java
    [inkl. Java-Profi-Buch auf CD ; aktuell zum JDK 5 ; für Programmiereinsteiger und Java-Neulinge ; mit vielen Beispielen und kommentierten Lösungen ; verstehen, anwenden und nachschlagen]
    Erschienen: 2005
    Verlag:  Galileo Press, Bonn

    Bernhard Steppan hat einen ausführlichen Einstieg in Java geschrieben, der vor allem für Leser ohne Programmierkenntnisse geeignet ist. Grundbegriffe, Sprachelemente und der objektorientierte Ansatz werden ausführlich erklärt, bevor es zum... mehr

    Staats- und Universitätsbibliothek Hamburg Carl von Ossietzky
    keine Fernleihe

     

    Bernhard Steppan hat einen ausführlichen Einstieg in Java geschrieben, der vor allem für Leser ohne Programmierkenntnisse geeignet ist. Grundbegriffe, Sprachelemente und der objektorientierte Ansatz werden ausführlich erklärt, bevor es zum praxisorientierten Teil des Buches geht. Hier werden Java-Anwendungen geschrieben und kommentiert.  

     

    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Quelle: Verbundkataloge
    Sprache: Deutsch
    Medientyp: Ebook
    Format: Online
    ISBN: 3898425568
    RVK Klassifikation: ST 250 J35
    Auflage/Ausgabe: 2., aktualisierte Aufl
    Schriftenreihe: Galileo computing
    Schlagworte: Softwareentwicklung; Java 2 Standard Edition 5.0; ; Java 2 Standard Edition 5.0; ; Softwareentwicklung; Java 2 Standard Edition 5.0; ; Java 2 Standard Edition 5.0;
    Umfang: Online Ressource (609 S. = 12268 kB)
  10. Java ME
    Anwendungsentwicklung für Handys, PDA und Co.
    Erschienen: 2006
    Verlag:  Hanser, München [u.a.]

    Staats- und Universitätsbibliothek Hamburg Carl von Ossietzky
    keine Fernleihe
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Quelle: Verbundkataloge
    Beteiligt: Mosemann, Heiko
    Sprache: Deutsch
    Medientyp: Ebook
    Format: Online
    ISBN: 3446409130
    RVK Klassifikation: ST 250 ; ST 250 J35 ; ST 361 J35
    Schlagworte: (Computer program language); Mobile communication systems
    Umfang: Online Ressource (397 S. = 11136 kB)
    Bemerkung(en):

    Literaturverz. S. [383] - 386

  11. Der Weg zum Java-Profi
    Konzepte und Techniken für die professionelle Java-Entwicklung
    Erschienen: 2015
    Verlag:  dpunkt.verlag, Heidelberg

    Universitätsbibliothek Augsburg
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    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
    Quelle: Verbundkataloge
    Sprache: Deutsch
    Medientyp: Ebook
    Format: Online
    ISBN: 9783864902031; 9783864916373; 9783864916380
    RVK Klassifikation: ST 250 ; ST 250 J35
    Auflage/Ausgabe: 3., aktualisierte und überarbeitete Aufl.
    Schlagworte: Application software; Java (Computer program language); Application software; Java Standard Edition 6; Java Standard Edition 9; Java Standard Edition 8
    Umfang: 1 Online-Ressource (1,462 pages)
    Bemerkung(en):

    Includes bibliographical references and index

  12. Pro Java 9 Games Development
    Leveraging the JavaFX APIs
    Erschienen: 2017
    Verlag:  Apress, Berkeley, CA

    Ostbayerische Technische Hochschule Amberg-Weiden, Hochschulbibliothek Amberg
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule Augsburg, Bibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschulbibliothek Ingolstadt
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule Kempten, Hochschulbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule München, Bibliothek
    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
    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: 9781484209738
    Weitere Identifier:
    RVK Klassifikation: ST 250 J35
    Schlagworte: Computer science; Computer Science; Game Development; Java; Computerspielherstellung; Java Standard Edition 9
    Umfang: 1 Online-Ressource (XXVIII, 633 Seiten), 474 Illustrationen (farbig)
  13. Middleware in Java
    Leitfaden zum Entwurf verteilter Anwendungen - Implementierung von verteilten Systemen über JMS - verteilte Objekte über RMI und CORBA
    Erschienen: 2005
    Verlag:  Vieweg, Wiesbaden

    Technische Universität München, Universitätsbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Universitätsbibliothek der LMU München
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Universität der Bundeswehr München, Universitätsbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    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
    Beteiligt: Mathes, Markus (Verfasser)
    Sprache: Deutsch
    Medientyp: Ebook
    Format: Online
    ISBN: 9783322802620
    Weitere Identifier:
    RVK Klassifikation: ST 250 ; ST 235 ; ST 250 J35
    DDC Klassifikation: Datenverarbeitung; Informatik (004)
    Auflage/Ausgabe: 1. Aufl.
    Schriftenreihe: IT-Professional
    Schlagworte: RMI; Verteiltes System; CORBA; Java 2 Standard Edition 5.0; Java Message Service; Middleware; Thread; Synchronisierung; Client-Server-Konzept; Serialisierbarkeit
    Umfang: 1 Online-Ressource, Ill., graph. Darst.
  14. Eclipse
    Kennenlernen. Verstehen. Effizient nutzen.
    Erschienen: [2019]
    Verlag:  Hanser, München

    Ostbayerische Technische Hochschule Amberg-Weiden, Hochschulbibliothek Amberg
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschulbibliothek Ansbach
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    TH-AB - Technische Hochschule Aschaffenburg, Hochschulbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule Augsburg, Bibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Universitätsbibliothek Bayreuth
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschule Coburg, Zentralbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    THD - Technische Hochschule Deggendorf, Hochschulbibliothek
    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
    Hochschule für Angewandte Wissenschaften Hof - Hochschule Hof, Bibliothek
    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
    Universitätsbibliothek der LMU München
    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
    Ostbayerische Technische Hochschule Amberg-Weiden, Hochschulbibliothek, Standort Weiden
    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: Deutsch
    Medientyp: Ebook
    Format: Online
    ISBN: 9783446457294
    Weitere Identifier:
    RVK Klassifikation: ST 250 ; ST 232 ; ST 250 J35
    DDC Klassifikation: Datenverarbeitung; Informatik (004)
    Schlagworte: Eclipse 4.8; Java <Programmiersprache>; Eclipse <Programmierumgebung>; Programmierumgebung; Java Standard Edition 9
    Weitere Schlagworte: Eclipse; Java; Programmierung; Refactoring; Softwareentwicklung; Webanwendungen
    Umfang: 1 Online-Ressource (XVI, 302 Seiten), Illustrationen
    Bemerkung(en):

    E-Book 2018 erschienen

  15. Java projects
    learn the fundamentals of Java 11 programming by building industry grade practical projects
    Autor*in: Verhas, Peter
    Erschienen: August 2018
    Verlag:  Packt, Birmingham ; Mumbai

    Java is one of the software languages most commonly used by programmers and developers. This book covers essential concepts in Java by showing you how to implement them in various applications. You'll learn about Java 18.9's newest features and... mehr

    THD - Technische Hochschule Deggendorf, Hochschulbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe
    Hochschulbibliothek Ingolstadt
    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
    Universität der Bundeswehr München, Universitätsbibliothek
    uneingeschränkte Fernleihe, Kopie und Ausleihe

     

    Java is one of the software languages most commonly used by programmers and developers. This book covers essential concepts in Java by showing you how to implement them in various applications. You'll learn about Java 18.9's newest features and develop the skills required for building robust, easily scalable, and maintainable code in Java Cover -- Title Page -- Copyright and Credits -- Packt Upsell -- Contributors -- Acknowledgments -- Table of Contents -- Preface -- Chapter 1: Getting Started with Java 11 -- Getting started with Java -- Version numbers -- Installing Java -- Installation on Windows -- Installation on macOS -- Installation on Linux -- Setting JAVA_HOME -- Executing jshell -- Looking at the bytecode -- Packaging classes into a JAR file -- Managing the running Java application -- Using an IDE -- NetBeans -- Eclipse -- IntelliJ -- IDE services -- IDE screen structure -- Editing files -- Managing projects -- Building the code and running it -- Debugging Java -- Summary -- Chapter 2: The First Real Java Program - Sorting Names -- Getting started with sorting -- Bubble sort -- Getting started with project structure and build tools -- Make -- Ant -- Installing Ant -- Using Ant -- Maven -- Installing Maven -- Using Maven -- Gradle -- Installing Gradle -- Setting up the project with Maven -- Coding the sort -- Understanding the algorithm and language constructs -- Blocks -- Variables -- Types -- Arrays -- Expressions -- Loops -- Conditional execution -- Final variables -- Classes -- Inner, nested, local, and anonymous classes -- Packages -- Methods -- Interfaces -- Argument passing -- Fields -- Modifiers -- Object initializers and constructors -- Compiling and running the program -- Summary -- Chapter 3: Optimizing the Sort - Making Code Professional -- The general sorting program -- A brief overview of various sorting algorithms -- Quicksort -- Project structure and build tools -- Maven dependency management -- Coding the sort -- Creating the interfaces -- Creating BubbleSort -- Architectural considerations -- Creating unit tests -- Adding JUnit as a dependency -- Writing the BubbleSortTest class -- Good unit tests -- A good unit test is readable -- Unit tests are fast Unit tests are deterministic -- Assertions should be as simple as possible -- Unit tests are isolated -- Unit tests cover the code -- Refactoring the test -- Collections with wrong elements -- Handling exceptions -- Generics -- Test-Driven Development -- Implementing QuickSort -- The partitioning class -- Recursive sorting -- Non-recursive sorting -- Implementing the API class -- Creating modules -- Why modules are needed -- What is a Java module? -- Summary -- Chapter 4: Mastermind - Creating a Game -- The game -- The model of the game -- Java collections -- Interface collection -- Set -- Hash functions -- The equals method -- The hashCode method -- Implementing equals and hashCode -- HashSet -- EnumSet -- LinkedHashSet -- SortedSet -- NavigableSet -- TreeSet -- List -- LinkedList -- ArrayList -- Queue -- Deque -- Map -- HashMap -- IdentityHashMap -- Dependency injection -- Implementing the game -- ColorManager -- The class color -- JavaDoc and code comments -- Row -- Table -- Guesser -- UniqueGuesser -- GeneralGuesser -- The Game class -- Creating an integration test -- Summary -- Chapter 5: Extending the Game - Run Parallel, Run Faster -- How to make Mastermind parallel -- Refactoring -- Processes -- Threads -- Fibers -- java.lang.Thread -- Pitfalls -- Deadlocks -- Race conditions -- Overused locks -- Starving -- ExecutorService -- Completable future -- ForkJoinPool -- Variable access -- The CPU heartbeat -- Volatile variables -- Synchronized block -- Wait and notify -- Lock -- Condition -- ReentrantLock -- ReentrantReadWriteLock -- Atomic variables -- BlockingQueue -- LinkedBlockingQueue -- LinkedBlockingDeque -- ArrayBlockingQueue -- LinkedTransferQueue -- IntervalGuesser -- ParallelGamePlayer -- Microbenchmarking -- Summary -- Chapter 6: Making Our Game Professional - Do it as a Web App -- Web and network -- IP -- TCP/IP -- DNS

     

    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Ebook
    Format: Online
    ISBN: 9781789130690
    RVK Klassifikation: ST 250 ; ST 250 J35
    Auflage/Ausgabe: Second edition
    Schlagworte: Java Standard Edition 11
    Weitere Schlagworte: Java (Computer program language)
    Umfang: 1 Online-Ressource (vii, 498 Seiten), Illustrationen
  16. Java 6 Core Techniken
    Essentielle Techniken für Java-Apps
    Erschienen: [2009]; ©2008
    Verlag:  Oldenbourg Wissenschaftsverlag, Berlin ; Boston

    Wenn Ihr Interesse an Java über die Programmierung von einfachen Applikationen hinausgeht, ergeben sich sehr bald Fragen wie z.B.: - Welche Techniken sind in Java 6 essentiell? - Wie kann man Techniken wie Generics, Reflexions, Annotationen und... mehr

    Zugang:
    Hochschulbibliothek der Fachhochschule Aachen
    Universitätsbibliothek der RWTH Aachen
    Fachhochschule Bielefeld, Hochschulbibliothek
    Hochschule Bochum, Hochschulbibliothek
    Ruhr-Universität Bochum, Universitätsbibliothek
    Universitäts- und Landesbibliothek Bonn
    Fachhochschule Dortmund, Hochschulbibliothek
    Universitätsbibliothek Duisburg-Essen, Campus Essen
    Westfälische Hochschule Gelsenkirchen Bocholt Recklinghausen, Hochschulbibliothek
    Universitätsbibliothek der Fernuniversität
    Katholische Hochschule Nordrhein-Westfalen (katho), Hochschulbibliothek
    Technische Hochschule Köln, Hochschulbibliothek
    Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln
    Hochschule Ruhr West, Hochschulbibliothek
    Hochschule Ruhr West, Hochschulbibliothek, Zweigbibliothek Bottrop
    Universitäts- und Landesbibliothek Münster

     

    Wenn Ihr Interesse an Java über die Programmierung von einfachen Applikationen hinausgeht, ergeben sich sehr bald Fragen wie z.B.: - Welche Techniken sind in Java 6 essentiell? - Wie kann man Techniken wie Generics, Reflexions, Annotationen und Prozessoren bei der Programmierung eigener Applikationen einsetzen? - Wie kann man Services und Komponenten - ClassLoader, ServiceLoader, Easy of Development mit JDBC 4 und JavaDB sowie JMX gezielt nutzen? - Kann das Compiler-API für die dynamische Erstellung von Klassen zur Laufzeit verwendet werden? All diese Punkte werden in klar voneinander abgegrenzten Kapiteln anhand von vielen Beispielen und Hinweisen beantwortet

     

    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Quelle: Verbundkataloge
    Sprache: Deutsch
    Medientyp: Ebook
    Format: Online
    ISBN: 9783486595192
    Weitere Identifier:
    RVK Klassifikation: ST 250 J35
    Weitere Schlagworte: Core Techniken; JDBC 4; JMX.; Java 6; Java Apps; Java Standard Edition 6; COMPUTERS / Computer Science
    Umfang: 1 online resource (467 p.)
  17. Java-6-Core-Techniken
    essentielle Techniken für Java-Apps
    Erschienen: 2008
    Verlag:  Oldenbourg, München

    Hochschulbibliothek der Fachhochschule Aachen
    Ruhr-Universität Bochum, Universitätsbibliothek
    ebook
    keine Fernleihe
    Fachhochschule Dortmund, Hochschulbibliothek
    Universitäts- und Stadtbibliothek Köln, Hauptabteilung
    Fachhochschule Münster, Hochschulbibliothek
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Quelle: Verbundkataloge
    Sprache: Deutsch
    Medientyp: Ebook
    Format: Online
    ISBN: 9783486595192
    Weitere Identifier:
    RVK Klassifikation: ST 250 J35
    Schlagworte: Java Standard Edition 6
    Umfang: XII, 455 S., graph. Darst.
    Bemerkung(en):

    Online-Ausg.

  18. Einstieg in Eclipse
    [die Werkzeuge für Java-Entwickler ; Werkzeuge für die Profi-Entwicklung glasklar vorgestellt ; inkl. Git, Subversion, Unit-Tests, Plug-in-Entwicklung ; GUI-Entwicklung mit dem WindowBuilder ; aktuell zu "Luna" und Java 8]
    Erschienen: 2014
    Verlag:  Galileo Press, Bonn

    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Quelle: Verbundkataloge
    Sprache: Deutsch
    Medientyp: Ebook
    Format: Online
    ISBN: 9783836229586
    RVK Klassifikation: ST 250 J35 ; ST 233 ; ST 232 ; ST 230
    DDC Klassifikation: Datenverarbeitung; Informatik (004)
    Auflage/Ausgabe: 5., aktualisierte Aufl.
    Schriftenreihe: Galileo computing
    Schlagworte: Java Standard Edition 8; Eclipse 4.4
    Umfang: 400 S., Ill.
  19. Java
    der Grundkurs ; [eine kompakte Einführung in die Programmiersprache Java ; vom ersten Schritt bis zur komplexen Anwendung ; mit Codebeispielen, Übungen und Lösungen zum Selbstlernen ; aktuell zu Java 8]
    Erschienen: 2015
    Verlag:  Galileo Press, Bonn

    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Quelle: Verbundkataloge
    Sprache: Deutsch
    Medientyp: Ebook
    Format: Online
    ISBN: 9783836237550
    RVK Klassifikation: ST 250 J35
    DDC Klassifikation: Datenverarbeitung; Informatik (004)
    Auflage/Ausgabe: 1. Aufl.
    Schriftenreihe: Galileo computing
    Schlagworte: Java Standard Edition 8
    Weitere Schlagworte: Java programmieren; Programmiersprache; objektorientiert programmieren
    Umfang: 426 S., Ill., graph. Darst.
  20. Java performance tuning
    [efficient & effective tuning strategies ; covers Java SDK 1.4 ; includes J2EE performance tuning]
    Autor*in: Shirazi, Jack
    Erschienen: 2003
    Verlag:  O'Reilly, Beijing [u.a.]

    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Ebook
    Format: Online
    ISBN: 0596003773
    RVK Klassifikation: ST 260 ; ST 250 ; ST 250 J35
    Auflage/Ausgabe: 2. ed.
    Schriftenreihe: Safari Books online
    Schlagworte: Tuning; JDK 1.4; Java 2 Enterprise Edition; Java <Programmiersprache>
  21. Java for dummies
    Autor*in: Burd, Barry
    Erschienen: [2011]; © 2011
    Verlag:  Wiley Publishing, Inc., Hoboken, NJ

    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Hinweise zum Inhalt
    Quelle: Verbundkataloge
    Sprache: Englisch
    Medientyp: Ebook
    Format: Online
    ISBN: 9781118257517; 9781118128305; 9781118128329; 9781118128312
    Weitere Identifier:
    RVK Klassifikation: ST 250 J35 ; ST 250
    Auflage/Ausgabe: 5th edition
    Schlagworte: Java (Computer program language); Internet programming; Programming languages (Electronic computers); Java <Programmiersprache>; Java Standard Edition 7
    Weitere Schlagworte: Electronic books
    Umfang: 1 Online-Ressource (xix, 404 Seiten), Illustrationen
  22. Einstieg in Eclipse 3.7
    aktuell zu Indigo [und Java 7 ; effiziente Java-Entwicklung mit Eclipse ; Plug-ins, Web- und RCP-Anwendungen erstellen ; inkl. Refactoring, Debugging, Subversion, CVS u.v.m.]
    Erschienen: 2012
    Verlag:  Galileo Press, Bonn

    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Quelle: Verbundkataloge
    Beteiligt: Wolf, Yvonne (Verfasser)
    Sprache: Deutsch
    Medientyp: Ebook
    Format: Online
    ISBN: 9783836216685; 383621668X
    RVK Klassifikation: ST 230 ; ST 233 ; ST 250 J35 ; ST 232
    DDC Klassifikation: Datenverarbeitung; Informatik (004)
    Auflage/Ausgabe: 4., aktualisierte Aufl.
    Schriftenreihe: Galileo Computing
    Schlagworte: Java Standard Edition 7; Eclipse 3.7
    Umfang: 418 S., Ill.
  23. Programmieren in Java
    [JAVA 7]
    Autor*in: Jobst, Fritz
    Erschienen: 2011
    Verlag:  Hanser, München

    Zugang:
    Universitätsbibliothek der RWTH Aachen
    Universitäts- und Stadtbibliothek Köln, Hauptabteilung
    Hochschule Ruhr West, Hochschulbibliothek
    Hochschule Ruhr West, Hochschulbibliothek, Zweigbibliothek Bottrop
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Quelle: Verbundkataloge
    Sprache: Deutsch
    Medientyp: Ebook
    Format: Online
    ISBN: 9783446428577
    RVK Klassifikation: ST 250 ; ST 250 J35
    Auflage/Ausgabe: 6., vollst. überarb. Aufl.
    Schlagworte: Java Standard Edition 7
    Umfang: XII, 393 S., Ill., graph. Darst.
  24. Programmieren lernen
    Eine grundlegende Einführung mit Java
    Autor*in: Pepper, Peter
    Erschienen: 2007
    Verlag:  Springer-Verlag Berlin Heidelberg, Berlin, Heidelberg

    Universitätsbibliothek der RWTH Aachen
    Fachhochschule Bielefeld, Hochschulbibliothek
    Ruhr-Universität Bochum, Universitätsbibliothek
    Fachhochschule Dortmund, Hochschulbibliothek
    Universitäts- und Landesbibliothek Düsseldorf
    Universitätsbibliothek Duisburg-Essen, Campus Essen
    Westfälische Hochschule Gelsenkirchen Bocholt Recklinghausen, Hochschulbibliothek
    Technische Hochschule Köln, Hochschulbibliothek
    Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien
    Hochschule Ruhr West, Hochschulbibliothek
    Hochschule Ruhr West, Hochschulbibliothek, Zweigbibliothek Bottrop
    Fachhochschule Münster, Hochschulbibliothek
    Universitäts- und Landesbibliothek Münster
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Quelle: Verbundkataloge
    Sprache: Unbestimmt
    Medientyp: Ebook
    Format: Online
    ISBN: 9783540725527
    Weitere Identifier:
    RVK Klassifikation: ST 250 J35 ; ST 250 ; ST 230
    Auflage/Ausgabe: 3. Auflage
    Schriftenreihe: eXamen.press
    Schlagworte: Computer science; Data structures (Computer science); Engineering mathematics; Java Standard Edition 6; Objektorientierte Programmierung
  25. Grundkurs JAVA
    Von den Grundlagen bis zu Datenbankund Netzanwendungen
    Autor*in: Abts, Dietmar
    Erschienen: 2010
    Verlag:  Vieweg+Teubner Verlag / Springer Fachmedien Wiesbaden GmbH, Wiesbaden, Wiesbaden

    Hochschulbibliothek der Fachhochschule Aachen
    Universitätsbibliothek der RWTH Aachen
    Fachhochschule Bielefeld, Hochschulbibliothek
    Ruhr-Universität Bochum, Universitätsbibliothek
    Fachhochschule Dortmund, Hochschulbibliothek
    Universitäts- und Landesbibliothek Düsseldorf
    Universitätsbibliothek Duisburg-Essen, Campus Essen
    Westfälische Hochschule Gelsenkirchen Bocholt Recklinghausen, Hochschulbibliothek
    Hochschule Rhein-Waal, Zweigbibliothek Kamp-Lintfort
    Technische Hochschule Köln, Hochschulbibliothek
    Universitäts- und Stadtbibliothek Köln, Hauptabteilung
    Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien
    Hochschule Ruhr West, Hochschulbibliothek, Zweigbibliothek Bottrop
    Hochschule Ruhr West, Hochschulbibliothek
    Fachhochschule Münster, Hochschulbibliothek
    Export in Literaturverwaltung   RIS-Format
      BibTeX-Format
    Quelle: Verbundkataloge
    Sprache: Deutsch
    Medientyp: Ebook
    Format: Online
    ISBN: 9783834897473
    Weitere Identifier:
    RVK Klassifikation: ST 250 ; ST 250 J35
    Auflage/Ausgabe: 6., erweiterte Auflage
    Schlagworte: Computer science; Software engineering; Engineering mathematics; Java Standard Edition 6