Beginning Java programming the object-oriented approach
A comprehensive Java guide, with samples, exercises, casestudies, and step-by-step instruction Beginning Java Programming: The Object Oriented Approachis a straightforward resource for getting started with one of theworld's most enduringly popular programming languages. Based onclasses taught...
Otros Autores: | , , |
---|---|
Formato: | Libro electrónico |
Idioma: | Inglés |
Publicado: |
Indianapolis, [Indiana] :
Wrox
2015.
|
Colección: | Wrox Programmer to Programmer
|
Materias: | |
Ver en Biblioteca Universitat Ramon Llull: | https://discovery.url.edu/permalink/34CSUC_URL/1im36ta/alma991009849084606719 |
Tabla de Contenidos:
- Beginning Java® Programming; About the Authors; Credits; Acknowledgments; Contents; Introduction; Chapter 1: A General Introduction to Programming ; The Programming Process; Object-Oriented Programming: A Sneak Preview; Programming Errors; Syntax/Compilation Errors; Runtime Errors; Logic/Semantic Errors; Principles of Software Testing; Software Maintenance; Adaptive Maintenance; Perfective Maintenance; Corrective Maintenance; Preventive Maintenance; Principles of Structured Programming; Chapter 2: Getting to Know Java; A Short Java History; Features of Java; Looking Under the Hood
- BytecodeJava Runtime Environment (JRE); Java Application Programming Interface (API); Class Loader; Bytecode Verifier; Java Virtual Machine (JVM); Java Platforms; Java Applications; Standalone Applications; Java Applets; Java Servlets; Java Beans; Java Language Structure; Classes; Identifiers; Java Keywords; Variables; Methods; Comments; Naming Conventions; Java Data Types; Primitive Data Types; Literals; Operators; Arithmetic Operators; Assignment Operators; Bitwise Operators; Logical Operators; Relational Operators; Arrays; Type Casting; Summary
- Chapter 3: Setting Up Your Development EnvironmentIntegrated Development Environments; Coding in Text Editors; Choosing an IDE; Eclipse; NetBeans; IntelliJ IDEA; Continuing with One IDE; Installing Eclipse on Your Computer; Downloading and Installing Eclipse; Using Eclipse; Chapter 4: Moving Toward Object-Oriented Programming ; Basic Concepts of Object-Oriented Programming; Classes and Objects in Java; Defining Classes in Java; Creating Objects; Storing Data: Variables; Instance Variables; Class Variables; Final Variables; Variable Scope; Defining Behavior: Methods; Instance Methods
- Class MethodsConstructors; The Main Method; Method Argument Passing; Java SE Built-in Classes; Classes in the java.lang Package; Classes in the java.io and java.nio Packages; Classes in the java.math Package; Classes in the java.net, java.rmi, javax.rmi, and org.omg.CORBA Packages; Classes in the java.awt and javax.swing Packages; Classes in the java.util Package; Collections; Other Utility Classes; Other Classes and Custom Libraries; Chapter 5: Controlling the Flow of Your Program; Comparisons Using Operators and Methods; Comparing Primitive Data Types with Comparison Operators
- Comparing Composite Data Types with Comparison MethodsUnderstanding Language Control; Creating if-then Statements; Nesting if-then Statements; Creating for Loops; What Is an Enhanced for Loop?; Nesting for Loops; Creating while Loops; What Is a do while Loop?; Comparing for and while Loops; Creating Switches; Comparing Switches and if-then Statements; Reviewing Keywords for Control; Controlling with the return Keyword; Controlling with the break Keyword; Controlling with the continue Keyword; Specifying a Label for break or continue Control; Reviewing Control Structures
- Chapter 6: Handling Exceptions and Debugging