Narrow Search
Last searches

Results for *

Displaying results 1 to 25 of 796.

  1. Mastering Java EE development with WildFly
    create enterprise-grade Java applications with Wildfly
    Published: 2017; © 2017
    Publisher:  Packt Publishing, Birmingham

    Fachhochschule Dortmund, Hochschulbibliothek
    Unlimited inter-library loan, copies and loan
    Export to reference management software   RIS file
      BibTeX file
    Source: Union catalogues
    Language: English
    Media type: Ebook
    Format: Online
    ISBN: 9781787289079
    Subjects: Anwendungssoftware; Java EE 7
    Other subjects: Java (Computer program language); Application software / Development / Computer programs
    Scope: 1 Online-Ressource (X, 436 Seiten), Illustrationen
  2. Java
    how to program : early objects
    Published: [2018]; © 2018
    Publisher:  Pearson, New York, NY

    Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg
    11 = TYD1284(11)
    Unlimited inter-library loan, copies and loan
    Universitätsbibliothek Trier
    GX.JA/f10338(11)
    Unlimited inter-library loan, copies and loan
    Export to reference management software   RIS file
      BibTeX file
    Content information
    Source: Union catalogues
    Language: English
    Media type: Book
    ISBN: 9781292223858; 1292223855
    Edition: Eleventh edition, global edition
    Subjects: Java (Computer program language); Java Standard Edition 9
    Scope: 1286 Seiten, 24 cm
  3. Learning Java by building Android games
    learn Java and Android from scratch by building six exciting games
    Author: Horton, John
    Published: 2018
    Publisher:  Packt Publishing, Birmingham, UK

    Fachhochschule Dortmund, Hochschulbibliothek
    Unlimited inter-library loan, copies and loan
    Export to reference management software   RIS file
      BibTeX file
    Source: Union catalogues
    Language: English
    Media type: Ebook
    Format: Online
    ISBN: 9781788836722
    Edition: Second edition
    Subjects: Computerspiel; App <Programm>; Android 9
    Other subjects: Android (Electronic resource); Application software / Development; Java (Computer program language)
    Scope: 1 Online-Ressource (XXVI, 741 Seiten), Illustrationen
  4. Java EE 7 development with WildFly
    leverage the power of the WildFly application server from JBoss to develop modern Java EE 7 applications
    Published: December 2014
    Publisher:  Packt Publishing LTD., Birmingham, UK

    Universitätsbibliothek der RWTH Aachen
    FNT:ST 250J35 0082+2
    Unlimited inter-library loan, copies and loan
    Hochschule Trier, Umwelt-Campus Birkenfeld, Bibliothek
    inf Bb 164
    Unlimited inter-library loan, copies and loan
    Export to reference management software   RIS file
      BibTeX file
    Source: Union catalogues
    Language: English
    Media type: Book
    ISBN: 9781782171980
    RVK Categories: ST 250
    Edition: Second edition
    Series: Professional expertise distilled
    Subjects: Application software / Development; Java (Computer program language); Anwendungssoftware; Entwicklung; Java EE 7
    Scope: 413 Seiten, Illustrationen
  5. Java precisely
    Published: 2002
    Publisher:  MIT Press, Cambridge, Mass.

    Universitätsbibliothek der LMU München
    Unlimited inter-library loan, copies and loan
    Export to reference management software   RIS file
      BibTeX file
    Source: Union catalogues
    Language: English
    Media type: Book
    ISBN: 0262692767
    RVK Categories: ST 250
    Subjects: Java (Langage de programmation); Java (Computer program language); Java <Programmiersprache>; Java Standard Edition 8
    Scope: VII, 118 S., graph. Darst.
    Notes:

    Includes bibliographical references (p. 106) and index

  6. Java projects
    learn the fundamentals of Java 11 programming by building industry grade practical projects
    Published: 2018; © 2018
    Publisher:  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... more

    Humboldt-Universität zu Berlin, Universitätsbibliothek, Jacob-und-Wilhelm-Grimm-Zentrum
    Unlimited inter-library loan, copies and loan

     

    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 to reference management software   RIS file
      BibTeX file
    Source: Union catalogues
    Language: English
    Media type: Book
    ISBN: 9781789131895
    RVK Categories: ST 250
    Edition: second edition
    Subjects: Java Standard Edition 11
    Other subjects: Java (Computer program language)
    Scope: VII, 507 Seiten, Illustrationen
  7. Java 7 concurrency cookbook
    Published: 2012
    Publisher:  Packt Pub, Birmingham

    ""Java 7 Concurrency Cookbook"" is a practical Cookbook packed with real-world solutions. Intermediate?advanced level Java developers will learn from task-based recipes to use Java?s concurrent API to program thread safe solutions. If you are a Java... more

    Hochschule Aalen, Bibliothek
    E-Book EBSCO
    No inter-library loan
    Hochschule Esslingen, Bibliothek
    E-Book Ebsco
    No inter-library loan
    Saarländische Universitäts- und Landesbibliothek
    No inter-library loan
    Universitätsbibliothek der Eberhard Karls Universität
    No inter-library loan

     

    ""Java 7 Concurrency Cookbook"" is a practical Cookbook packed with real-world solutions. Intermediate?advanced level Java developers will learn from task-based recipes to use Java?s concurrent API to program thread safe solutions. If you are a Java developer who wants to take your knowledge of concurrent programming and multithreading further, as well as discover the new concurrency features of Java 7, then ""Java 7 Concurrency Cookbook"" is for you

     

    Export to reference management software   RIS file
      BibTeX file
    Content information
    Volltext (lizenzpflichtig)
  8. Java 7 New Features Cookbook.
    Published: 2012; ©2012.
    Publisher:  Packt Publishing Ltd, Olton

    Each recipe comprises step-by-step instructions followed by an analysis of what was done in each task and other useful information. The book is designed so that you can read it chapter by chapter, or look at the list of recipes and refer to them in... more

    Deutsches Zentrum für Luft- und Raumfahrt, DLR-Bibliothek
    No inter-library loan

     

    Each recipe comprises step-by-step instructions followed by an analysis of what was done in each task and other useful information. The book is designed so that you can read it chapter by chapter, or look at the list of recipes and refer to them in no particular order. Each example comes with its expected output to make your learning even easier. This book is designed to bring those who are familiar with Java up-to-speed on the new features found in Java 7. Intro -- Java 7 New Features Cookbook -- Table of Contents -- Java 7 New Features Cookbook -- Credits -- About the Authors -- Acknowledgement -- About the Reviewers -- www.PacktPub.com -- Support files, eBooks, discount offers and more -- Why Subscribe? -- Free Access for Packt account holders -- Instant Updates on New Packt Books -- Preface -- What this book covers -- What you need for this book -- Who this book is for -- Conventions -- Reader feedback -- Customer support -- Downloading the example code -- Errata -- Piracy -- Questions -- 1. Java Language Improvements -- Introduction -- Using string literals in switch statements -- Getting ready -- How to do it... -- How it works... -- There's more... -- Using underscores in literals to improve code readability -- Getting ready -- How to do it... -- How it works... -- There's more... -- Simple underscore usage mistakes -- Using underscores with hexadecimal literals -- Using underscores with binary literals -- Using the try-with-resources block to improve exception handling code -- Getting ready -- How to do it... -- How it works... -- There's more... -- Understanding suppressed exceptions -- Structuring issues when using the try-with-resources technique -- See also -- Creating a resource that can be used with the try-with-resources technique -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Catching multiple exception types to improve type checking -- Getting ready -- How to do it... -- How it works... -- There's more... -- The use of a common exception base class and the ReflectiveOperationException -- Using the AssertionError class in Java 7 -- See also -- Rethrowing exceptions in Java 7 -- Getting ready -- How to do it... -- How it works... -- See also -- Using the diamond operator for constructor type inference -- Getting ready -- How to do it...

     

    Export to reference management software   RIS file
      BibTeX file
    Content information
    Volltext (lizenzpflichtig)
    Source: Union catalogues
    Contributor: Reese, Jennifer L. (MitwirkendeR)
    Language: English
    Media type: Ebook
    Format: Online
    ISBN: 9781849685634
    RVK Categories: ST 250
    Edition: 1st ed.
    Subjects: Java (Computer program language); Java (Computer program language) ; Handbooks, manuals, etc; Electronic books
    Scope: 1 online resource (480 pages)
    Notes:

    Description based on publisher supplied metadata and other sources

    Java 7 New Features Cookbook; Java 7 New Features Cookbook; Credits; About the Authors; Acknowledgement; About the Reviewers; www.PacktPub.com; Support files, eBooks, discount offers and more; Why Subscribe?; Free Access for Packt account holders; Instant Updates on New Packt Books; Preface; What this book covers; What you need for this book; Who this book is for; Conventions; Reader feedback; Customer support; Downloading the example code; Errata; Piracy; Questions; 1. Java Language Improvements; Introduction; Using string literals in switch statements; Getting ready; How to do it...

    How it works...There's more...; Using underscores in literals to improve code readability; Getting ready; How to do it...; How it works...; There's more...; Simple underscore usage mistakes; Using underscores with hexadecimal literals; Using underscores with binary literals; Using the try-with-resources block to improve exception handling code; Getting ready; How to do it...; How it works...; There's more...; Understanding suppressed exceptions; Structuring issues when using the try-with-resources technique; See also; Creating a resource that can be used with the try-with-resources technique

    Getting readyHow to do it...; How it works...; There's more...; See also; Catching multiple exception types to improve type checking; Getting ready; How to do it...; How it works...; There's more...; The use of a common exception base class and the ReflectiveOperationException; Using the AssertionError class in Java 7; See also; Rethrowing exceptions in Java 7; Getting ready; How to do it...; How it works...; See also; Using the diamond operator for constructor type inference; Getting ready; How to do it...; How it works...; There's more...

    Using the diamond operator when the type is not obviousSuppressing unchecked warnings; Understanding erasure; Using the SafeVarargs annotation; Getting ready; How to do it...; How it works...; There's more...; The use of @SafeVarargs annotation in Java core libraries; An example of heap pollution; See also; 2. Locating Files and Directories Using Paths; Introduction; Creating a Path object; Getting ready; How to do it...; How it works...; There's more...; Using the Paths class' get method; The meaning of the parent path; See also; Interoperability between java.io.File and java.nio.file.Files

    Getting readyHow to do it...; How it works...; See also; Converting a relative path into an absolute path; Getting ready; How to do it...; How it works...; There's more...; See also; Removing redundancies by normalizing a path; Getting ready; How to do it...; How it works...; There's more...; See also; Combining paths using path resolution; Getting ready; How to do it...; How it works...; There's more...; Using a String argument with the resolve method; Improper use of the resolve method; Using the resolveSibling; See also; Creating a path between two locations; Getting ready; How to do it...

    How it works...

  9. The Java tutorial
    a short course on the basics
    Published: 2015
    Publisher:  Addison-Wesley, Pearson Education, Upper Saddle River, NJ [u.a.]

    Technische Universität München, Universitätsbibliothek, Teilbibliotheken Garching
    Unlimited inter-library loan, copies and loan
    Export to reference management software   RIS file
      BibTeX file
    Source: Union catalogues
    Language: English
    Media type: Book
    ISBN: 9780134034089; 0134034082
    RVK Categories: ST 250
    Edition: 6. ed.
    Subjects: Java (Computer program language); Java Standard Edition 7; Java Standard Edition 6
    Scope: XXVII, 828 S., Ill., 24 cm
    Notes:

    Previous edition: The Java tutorial : a short course on the basics / Sharon Zakhour, Sowmya Kannan, Raymond Gallardo. 012013, which was orignally based on The Java tutorial / by Mary Campione. - Includes index

  10. Java programming
    Published: 2015; © 2016
    Publisher:  Cengage Learning, Boston, MA

    THD - Technische Hochschule Deggendorf, Hochschulbibliothek
    Unlimited inter-library loan, copies and loan
    Export to reference management software   RIS file
      BibTeX file
    Source: Union catalogues
    Language: English
    Media type: Book
    ISBN: 9781285856919
    RVK Categories: ST 250
    Edition: Eighth edition
    Subjects: Java (Computer program language); Java <Programmiersprache>; Java Standard Edition 7; Programmierung
    Scope: XXX, 994 Seiten, Illustrationen, Diagramme
  11. Java Programming Interviews Exposed
    Published: 2014; © 2014
    Publisher:  Wiley, Somerset

    If you are a skilled Java programmer but are concerned about the Java coding interview process, this real-world guide can help you land your next position Java is a popular and powerful language that is a virtual requirement for businesses making use... more

     

    If you are a skilled Java programmer but are concerned about the Java coding interview process, this real-world guide can help you land your next position Java is a popular and powerful language that is a virtual requirement for businesses making use of IT in their daily operations. For Java programmers, this reality offers job security and a wealth of employment opportunities. But that perfect Java coding job won't be available if you can't ace the interview. If you are a Java programmer concerned about interviewing, Java Programming Interviews Exposed is a great resource to prepare for your next opportunity. Author Noel Markham is both an experienced Java developer and interviewer, and has loaded his book with real examples from interviews he has conducted. Review over 150 real-world Java interview questions you are likely to encounter Prepare for personality-based interviews as well as highly technical interviews Explore related topics, such as middleware frameworks and server technologies Make use of chapters individually for topic-specific help Use the appendix for tips on Scala and Groovy, two other languages that run on JVMs Veterans of the IT employment space know that interviewing for a Java programming position isn't as simple as sitting down and answering questions. The technical coding portion of the interview can be akin to a difficult puzzle or an interrogation. With Java Programming Interviews Exposed, skilled Java coders can prepare themselves for this daunting process and better arm themselves with the knowledge and interviewing skills necessary to succeed

     

    Export to reference management software   RIS file
      BibTeX file
    Source: Union catalogues
    Language: English
    Media type: Ebook
    Format: Online
    ISBN: 9781118722923; 9781118722862
    Edition: 1st ed
    Subjects: Computer programming -- Problems, exercises, etc; Computer software; Java (Computer program language); Java Standard Edition 7; Java <Programmiersprache>; Vorstellungsgespräch
    Scope: 1 online resource (386 pages)
    Notes:

    Description based on publisher supplied metadata and other sources

  12. Professional Java for Web Applications
    Published: 2014; © 2014
    Publisher:  Wiley, Somerset

    Validation 1.1, JSR 317/338 Java Persistence API (JPA) 2.1, full-text searching with JPA, RESTful and SOAP web services, Advanced Message Queuing Protocol (AMQP), and OAuth Professional Java for Web Applications is the complete Wrox guide for... more

     

    Validation 1.1, JSR 317/338 Java Persistence API (JPA) 2.1, full-text searching with JPA, RESTful and SOAP web services, Advanced Message Queuing Protocol (AMQP), and OAuth Professional Java for Web Applications is the complete Wrox guide for software developers who are familiar with Java and who are ready to build high-level enterprise Java web applications

     

    Export to reference management software   RIS file
      BibTeX file
    Source: Union catalogues
    Language: English
    Media type: Ebook
    Format: Online
    ISBN: 9781118656518; 9781118656464
    Edition: 1st ed
    Subjects: Java (Computer program language); Web applications; Anwendungssystem; Java EE 7; Web-Seite; World Wide Web; Programmierung; Java <Programmiersprache>
    Scope: 1 online resource (939 pages)
    Notes:

    Description based on publisher supplied metadata and other sources

  13. Java EE 7 Performance Tuning and Optimization
    Published: 2014; © 2014
    Publisher:  Packt Publishing, Olton

    The book adopts a step-by-step approach, starting from building the basics and adding to it gradually by using different tools and examples. The book sequence is easy to follow and all topics are fully illustrated showing you how to make good use of... more

     

    The book adopts a step-by-step approach, starting from building the basics and adding to it gradually by using different tools and examples. The book sequence is easy to follow and all topics are fully illustrated showing you how to make good use of different performance diagnostic tools. If you are an experienced Java developer, architect, team leader, consultant, support engineer, or anyone else who needs performance tuning in your Java applications, and in particular, Java enterprise applications, this book is for you. No prior experience of performance tuning is required

     

    Export to reference management software   RIS file
      BibTeX file
    Source: Union catalogues
    Language: English
    Media type: Ebook
    Format: Online
    ISBN: 9781782176435; 9781782176428
    Subjects: Application software -- Development; Java (Computer program language); Java EE 7
    Scope: 1 online resource (555 pages)
    Notes:

    Description based on publisher supplied metadata and other sources

  14. Beginning Programming with Java For Dummies
    Author: Burd, Barry
    Published: 2014; © 2014
    Publisher:  Wiley, Somerset

    A practical introduction to programming with Java Beginning Programming with Java For Dummies, 4th Edition is a comprehensive guide to learning one of the most popular programming languages worldwide. This book covers basic development concepts and... more

     

    A practical introduction to programming with Java Beginning Programming with Java For Dummies, 4th Edition is a comprehensive guide to learning one of the most popular programming languages worldwide. This book covers basic development concepts and techniques through a Java lens. You'll learn what goes into a program, how to put the pieces together, how to deal with challenges, and how to make it work. The new Fourth Edition has been updated to align with Java 8, and includes new options for the latest tools and techniques. Java is the predominant language used to program Android and cloud apps, and its popularity is surging as app demand rises. Whether you're just tooling around, or embarking on a career, Beginning Programming with Java For Dummies, 4th Edition is a great place to start. Step-by-step instruction, easy-to-read language, and quick navigation make this book the perfect resource for new programmers. You'll begin with the basics before moving into code, with simple, yet detailed explanations every step of the way. Topics include: Learn the language with sample programs and the Java toolkit Familiarize yourself with decisions, conditions, statements, and information overload Differentiate between loops and arrays, objects and classes, methods and variables The book also contains links to additional resources, other programming languages, and guidance as to the most useful classes in the Java API. If you're new to programming languages, Beginning Programming with Java For Dummies, 4th Edition provides the instruction and practice you need to become a confident Java programmer

     

    Export to reference management software   RIS file
      BibTeX file
    Source: Union catalogues
    Language: English
    Media type: Ebook
    Format: Online
    ISBN: 9781118461068; 9781118407813
    Edition: 4th ed
    Subjects: Java (Computer program language); Java Standard Edition 7; Java <Programmiersprache>
    Scope: 1 online resource (483 pages)
    Notes:

    Description based on publisher supplied metadata and other sources

  15. Der Weg zum Java-Profi
    Konzepte und Techniken für die professionelle Java-Entwicklung
    Published: 2015; © 2015
    Publisher:  dpunkt.verlag, Heidelberg

    Sie haben bereits Einiges an Erfahrung mit Java und möchten Ihre Entwicklungstätigkeit nun professionalisieren? Oder sind Sie schon auf dem Weg zum Profi, benötigen aber ein Nachschlagewerk, das Ihnen die wichtigen Themen aus der Java-Welt kompakt... more

    Universitätsbibliothek Erlangen-Nürnberg, Hauptbibliothek
    Unlimited inter-library loan, copies and loan

     

    Sie haben bereits Einiges an Erfahrung mit Java und möchten Ihre Entwicklungstätigkeit nun professionalisieren? Oder sind Sie schon auf dem Weg zum Profi, benötigen aber ein Nachschlagewerk, das Ihnen die wichtigen Themen aus der Java-Welt kompakt und kompetent vermittelt? Diese umfassende Einführung in die professionelle Entwicklung vermittelt Ihnen das notwendige Wissen, um stabile und erweiterbare Softwaresysteme zu bauen. Praxisnahe Beispiele helfen dabei, das Gelernte rasch umzusetzen. Neben der Praxis wird viel Wert auf das Verständnis zugrunde liegender Konzepte gelegt. Dabei kommen dem Autor seine umfangreichen Schulungs- und Entwicklererfahrungen zugute. Diese Neuauflage wurde durchgehend überarbeitet, aktualisiert und erweitert. Verschiedene Kapitel sind Java 8 und seinen Neuerungen gewidmet, insbesondere Lambdas und dem Stream-API. Auch die neue GUI-Technologie JavaFX 8 wird vorgestellt. Folgende Themenbereiche werden behandelt: Grundlagen, Analyse und Design: Professionelle Arbeitsumgebung - Objektorientiertes Design - Java-Grundlagen Bausteine stabiler Java-Applikationen: Collections-Framework - Applikationsbausteine - Multithreading - Fortgeschrittene Themen - Swing - Internationalisierung Java 8: Lambda-Ausdrücke - Bulk Operations on Collections - Date And Time API - JavaFX 8 - Weitere Änderungen in JDK 8 Fallstricke und Lösungen: Bad Smells - Refactorings - Entwurfsmuster Qualitätssicherung: Programmierstil und Coding Conventions - Unit Tests - Codereviews - Optimierungen   Biographische Informationen Dipl.-Inform. Michael Inden ist Oracle-zertifizierter Java-Entwickler für JDK 6. Nach seinem Studium in Oldenburg war er lange Zeit als Softwareentwickler und -architekt bei verschiedenen internationalen Firmen tätig. Dabei hat er über 15 Jahre Erfahrung beim Entwurf objektorientierter Softwaresysteme gesammelt, an diversen

     

    Export to reference management software   RIS file
      BibTeX file
    Source: Union catalogues
    Language: German
    Media type: Ebook
    Format: Online
    ISBN: 9783864916373; 9783864902031
    Edition: 3rd ed
    Subjects: Application software -- Development; Application software; Hibernate (Electronic resource); Java (Computer program language); Java Standard Edition 6; Java Standard Edition 8; Java Standard Edition 9
    Scope: 1 online resource (1684 pages)
    Notes:

    Description based on publisher supplied metadata and other sources

  16. Java 8 Das Übungsbuch
    Über 200 Aufgaben mit vollständigen Lösungen
    Published: 2014
    Publisher:  Verlagsgruppe Hüthig Jehle Rehm, Heidelberg

    Ostbayerische Technische Hochschule Amberg-Weiden / Hochschulbibliothek Amberg
    Unlimited inter-library loan, copies and loan
    Ostbayerische Technische Hochschule Amberg-Weiden, Hochschulbibliothek, Standort Weiden
    Unlimited inter-library loan, copies and loan
    Export to reference management software   RIS file
      BibTeX file
    Source: Union catalogues
    Language: German
    Media type: Ebook
    Format: Online
    ISBN: 9783826696497; 3826696492
    Edition: 1. Auflage
    Series: Mitp Professional
    Subjects: COMPUTERS / Programming Languages / Java; Application software / Development; Java (Computer program language); Programming languages (Electronic computers); Java (Computer program language); Programming languages (Electronic computers); Application software; Java <Programmiersprache>; Java Standard Edition 8
    Scope: 995 pages
    Notes:

    Includes index

    Über 200 Aufgaben mit vollständigen LösungenTrainieren Sie Ihre Java-KenntnisseLearning by Doing anhand praktischer ÜbungenMit vollständigen und kommentierten LösungenAus dem Inhalt:Klassendefinition und ObjektinstantiierungJava-Standard-KlassenAbgeleitete Klassen und VererbungAbstrakte Klassen und InterfacesGraphische Programmierung mit AWT und SwingDie Architektur Model View Controller (MVC) von Swing-KomponentenInnere KlassenGenericsReflectionExceptions und ErrorsNeuerungen in Java 7Neuerungen in Java 8: Lambdas und StreamsDieses Buch ist kein Lehrbuch, sondern ein reines Übungsbuch und wen

  17. OCA/OCP Java SE 7
    programmer I & II study guide ; (exams IZO-803 & IZO-804) ; [complete exam preparation]
    Published: 2015
    Publisher:  McGraw-Hill Education, New York, NY [u.a.]

    Technische Universität München, Universitätsbibliothek, Teilbibliotheken Garching
    Unlimited inter-library loan, copies and loan
    Export to reference management software   RIS file
      BibTeX file
    Source: Union catalogues
    Language: English
    Media type: Book
    ISBN: 9780071772006
    RVK Categories: ST 250
    Subjects: Java Standard Edition 7
    Other subjects: Array
    Scope: XLVII, 987 S., graph. Darst.
  18. Spring in action
    Author: Walls, Craig
    Published: [2015]; ©2015
    Publisher:  Manning, Shelter Island

    Technische Hochschule Augsburg
    Unlimited inter-library loan, copies and loan
    Universitätsbibliothek Bamberg
    Unlimited inter-library loan, copies and loan
    Bayerische Staatsbibliothek
    Unlimited inter-library loan, copies and loan
    Deutsches Museum, Bibliothek
    No loan of volumes, only paper copies will be sent
    Export to reference management software   RIS file
      BibTeX file
    Content information
    Source: Union catalogues
    Language: English
    Media type: Book
    ISBN: 9781617291203
    RVK Categories: ST 250
    Edition: 4th edition
    Subjects: Java (Computer program language); Application software / Development; Spring 5.0; Java <Programmiersprache>; Spring <Framework, Informatik>; Spring 2.0; Spring 3.0; Java 2 Enterprise Edition; Entwurfsmuster; Programmierumgebung
    Scope: XXIV, 600 Seiten, graph. Darst., 24 cm
    Notes:

    covers Spring 4

  19. Java EE 7 Development with WildFly
    leverage the power of the WildFly application server from JBoss to develop modern Java EE 7 applications
    Published: 2014
    Publisher:  Packt Publishing LTD., Birmingham, UK

    Hochschulbibliothek Ingolstadt
    Unlimited inter-library loan, copies and loan
    Export to reference management software   RIS file
      BibTeX file
    Source: Union catalogues
    Language: English
    Media type: Book
    ISBN: 9781782171980
    RVK Categories: ST 250
    Edition: Second edition
    Series: Professional expertise distilled
    Subjects: Anwendungssoftware; Entwicklung; Java EE 7
    Other subjects: Application software / Development; Java (Computer program language)
    Scope: vii, 413 Seiten, Illustrationen
  20. Introduction to Java programming and data structures
    comprehensive version
    Published: [2022]
    Publisher:  Pearson, Harlow

    Hochschule für Angewandte Wissenschaften Hof - Hochschule Hof, Bibliothek
    Unlimited inter-library loan, copies and loan
    Hochschulbibliothek Ingolstadt
    Unlimited inter-library loan, copies and loan
    Technische Hochschulbibliothek Rosenheim
    No loan of volumes, only paper copies will be sent
    Export to reference management software   RIS file
      BibTeX file
    Source: Union catalogues
    Language: English
    Media type: Book
    ISBN: 9781292402079; 1292402075
    RVK Categories: ST 250
    Edition: Twelfth edition, global edition
    Subjects: Java (Computer program language); Java Standard Edition 7; Java <Programmiersprache>; Java Standard Edition 8
    Scope: 1240 Seiten, Illustrationen
    Notes:

    authorized adaptation from the United States edition, entitled introduction to Java programming and data structures, comprehensive version, 12th edition, ISBN 978-0-13-652023-8 by Y. Daniel Liang, published by Pearson education ©2020

  21. Introduction to video game engine development
    learn to design, implement, and use a cross-platform 2D game engine
    Published: [2021]; © 2021
    Publisher:  Apress, Berkeley, CA

    Ostbayerische Technische Hochschule Amberg-Weiden / Hochschulbibliothek Amberg
    Unlimited inter-library loan, copies and loan
    TH-AB - Technische Hochschule Aschaffenburg, Hochschulbibliothek
    Unlimited inter-library loan, copies and loan
    Technische Hochschule Augsburg
    Unlimited inter-library loan, copies and loan
    THD - Technische Hochschule Deggendorf, Hochschulbibliothek
    Unlimited inter-library loan, copies and loan
    Hochschule für Angewandte Wissenschaften Hof - Hochschule Hof, Bibliothek
    Unlimited inter-library loan, copies and loan
    Hochschulbibliothek Ingolstadt
    Unlimited inter-library loan, copies and loan
    Hochschule Kempten, Hochschulbibliothek
    Unlimited inter-library loan, copies and loan
    Hochschule Landshut, Hochschule für Angewandte Wissenschaften, Bibliothek
    Unlimited inter-library loan, copies and loan
    Hochschule München, Bibliothek
    Unlimited inter-library loan, copies and loan
    Technische Hochschule Nürnberg Georg Simon Ohm, Bibliothek
    No loan of volumes, only paper copies will be sent
    OTH- Ostbayerische Technische Hochschule Regensburg, Hochschulbibliothek
    Unlimited inter-library loan, copies and loan
    Hochschule für angewandte Wissenschaften Würzburg-Schweinfurt, Abteilungsbibliothek Schweinfurt
    Unlimited inter-library loan, copies and loan
    Technische Hochschule Würzburg-Schweinfurt Bibliothek
    Unlimited inter-library loan, copies and loan
    Universitätsbibliothek Würzburg
    Unlimited inter-library loan, copies and loan
    Export to reference management software   RIS file
      BibTeX file
    Content information
    Volltext (URL des Erstveröffentlichers)
    Source: Union catalogues
    Language: English
    Media type: Ebook
    Format: Online
    ISBN: 9781484270394
    Other identifier:
    Subjects: Game Development; Java; Programming Techniques; Professional Computing; Computer games—Programming; Java (Computer program language); Computer programming; Computer software; Spiel-Engine; Java <Programmiersprache>; Computerspiel; Programmierung
    Scope: 1 Online-Ressource (xxiii, 382 Seiten), Illustrationen
  22. Designing enterprise applications with the Java 2 Platform
    Published: 2000
    Publisher:  Addison-Wesley, Boston, Mass. [u.a.]

    Universitätsbibliothek Paderborn
    Unlimited inter-library loan, copies and loan
    Export to reference management software   RIS file
      BibTeX file
    Source: Union catalogues
    Language: English
    Media type: Book
    Format: Print
    ISBN: 0201702770
    RVK Categories: ST 250 J35 ; ST 250
    Edition: Enterprise Edition, 3. print.
    Series: The Java series
    Subjects: Application software; Java (Computer program language)
    Scope: XXI, 341 S. : graph. Darst.
  23. Enterprise Java security
    building secure J2EE applications
    Published: c2004
    Publisher:  Addison-Wesley, Boston, Mass. [u.a.]

    Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien
    Unlimited inter-library loan, copies and loan
    Export to reference management software   RIS file
      BibTeX file
    Source: Union catalogues
    Language: English
    Media type: Book
    Format: Print
    ISBN: 0321118898
    Edition: 1. print.
    Subjects: Java (Computer program language); Computer security
    Scope: XXIII, 579 S. : Ill., graph. Darst.
    Notes:

    Includes bibliographical references (p. 563) and index. - Formerly CIP

  24. Data structures and abstractions with Java
    Published: 2007
    Publisher:  Pearson Prentice Hall, Upper Saddle River, NJ

    Universitätsbibliothek Trier
    Unlimited inter-library loan, copies and loan
    Export to reference management software   RIS file
      BibTeX file
    Content information
    Source: Union catalogues
    Language: English
    Media type: Book
    Format: Print
    ISBN: 013204367X
    Edition: 2. ed., international ed.
    Subjects: Data structures (Computer science); Java (Computer program language)
    Scope: XXII, 998 S. : Ill., graph. Darst.
  25. jMonkeyEngine 3.0 beginner's guide
    develop professional 3D games for desktop, web, and mobile, all in the familiar Java programming ; [learning by doing: less theory, more results]
    Published: 2013
    Publisher:  Packt Publ., Birmingham [u.a.]

    Universitätsbibliothek Duisburg-Essen
    Unlimited inter-library loan, copies and loan
    Universitätsbibliothek Trier
    Unlimited inter-library loan, copies and loan
    Export to reference management software   RIS file
      BibTeX file
    Content information
    Source: Union catalogues
    Language: English
    Media type: Book
    Format: Print
    ISBN: 9781849516464; 9781849516471
    Series: Open source
    Community experience distilled
    Subjects: Computer games / Programming; Computer games / Design; Java (Computer program language)
    Scope: VI, 334 S. : Ill.