Introduction to Java Programming, 2nd Edition
eBook - ePub

Introduction to Java Programming, 2nd Edition

Prof. Sham Tickoo

Condividi libro
  1. English
  2. ePUB (disponibile sull'app)
  3. Disponibile su iOS e Android
eBook - ePub

Introduction to Java Programming, 2nd Edition

Prof. Sham Tickoo

Dettagli del libro
Anteprima del libro
Indice dei contenuti
Citazioni

Informazioni sul libro

Introduction to Java Programming is a textbook for software developers to familiarize them with the concept of object-oriented programming (OOP). The textbook enables the reader to understand the basic features of Java. The line-by-line explanation of the source code, a unique feature of the textbook, enables the students to gain a thorough and practical understanding of Java. The chapters in this book are structured in a pedagogical sequence, which makes this textbook very effective in learning the features and capabilities of the software.


The following are some additional features of this book: >

  • Each concept discussed in the book is exemplified by an application to clarify and facilitate better understanding.
  • This textbook introduces the key ideas of object-oriented programming in an innovative way.
  • The concepts are illustrated through best programs, covering the basic aspects of Java.
  • Additional information is provided to the users in the form of notes.
  • There is an extensive use of examples, schematic representation, screen captures, tables, and programming exercises.

Table of Contents
Chapter 1: Introduction to Java
Chapter 2: Fundamental Elements in Java
Chapter 3: Control Statements and Arrays
Chapter 4: Classes and Objects
Chapter 5: Inheritance
Chapter 6: Packages, Interfaces, and Inner Classes
Chapter 7: Exception Handling
Chapter 8: Multithreading
Chapter 9: String Handling
Chapter 10: Introduction to Applets and Event Handling
Chapter 11: Abstract Window Toolkit
Chapter 12: The Java I/O System
Index

Domande frequenti

Come faccio ad annullare l'abbonamento?
È semplicissimo: basta accedere alla sezione Account nelle Impostazioni e cliccare su "Annulla abbonamento". Dopo la cancellazione, l'abbonamento rimarrà attivo per il periodo rimanente già pagato. Per maggiori informazioni, clicca qui
È possibile scaricare libri? Se sì, come?
Al momento è possibile scaricare tramite l'app tutti i nostri libri ePub mobile-friendly. Anche la maggior parte dei nostri PDF è scaricabile e stiamo lavorando per rendere disponibile quanto prima il download di tutti gli altri file. Per maggiori informazioni, clicca qui
Che differenza c'è tra i piani?
Entrambi i piani ti danno accesso illimitato alla libreria e a tutte le funzionalità di Perlego. Le uniche differenze sono il prezzo e il periodo di abbonamento: con il piano annuale risparmierai circa il 30% rispetto a 12 rate con quello mensile.
Cos'è Perlego?
Perlego è un servizio di abbonamento a testi accademici, che ti permette di accedere a un'intera libreria online a un prezzo inferiore rispetto a quello che pagheresti per acquistare un singolo libro al mese. Con oltre 1 milione di testi suddivisi in più di 1.000 categorie, troverai sicuramente ciò che fa per te! Per maggiori informazioni, clicca qui.
Perlego supporta la sintesi vocale?
Cerca l'icona Sintesi vocale nel prossimo libro che leggerai per verificare se è possibile riprodurre l'audio. Questo strumento permette di leggere il testo a voce alta, evidenziandolo man mano che la lettura procede. Puoi aumentare o diminuire la velocità della sintesi vocale, oppure sospendere la riproduzione. Per maggiori informazioni, clicca qui.
Introduction to Java Programming, 2nd Edition è disponibile online in formato PDF/ePub?
Sì, puoi accedere a Introduction to Java Programming, 2nd Edition di Prof. Sham Tickoo in formato PDF e/o ePub, così come ad altri libri molto apprezzati nelle sezioni relative a Computer Science e Programming in Java. Scopri oltre 1 milione di libri disponibili nel nostro catalogo.

Informazioni

Anno
2017
ISBN
9781942689850
Chapter 1
78284.webp
78288.webp
Introduction to Java
Learning Objectives
After completing this chapter, you will be able to:
• Understand history, evolution, and features of Java
• Understand the concept of OOPS
• Understand Java complier and interpreter
• Install Java development kit
• Write, compile, set the path, and run your first Java program
• Install NetBeans IDE
• Write, build, and run Java program in NetBeans IDE
Introduction
This chapter introduces you to Java programming language and allows you to write your first program in Java. In this chapter, you will get a brief idea about history, evolution, and features of the language. Also, you will learn how to install Java and Net Beans IDE (Integrated Development Environment) on your system and run Java programs. Moreover, you will gain knowledge about the concept of object oriented programming as well as its importance in developing Java programs.

Note
1. An Integrated Development Environment (IDE) is a software application that provides comprehensive features to computer programmers for software development. It generally consists of a source code editor, build automation tools, and a debugger.
2. The examples in this book are tested on Windows platform which is itself written in Java.

HISTORY AND EVOLUTION OF JAVA
The first version of Java was developed by James Gosling at Sun Microsystems (which has since been acquired by Oracle Corporation) in USA, in the year 1991. Initially, it was named as Oak by James Gosling, but later in 1995, it was renamed to Java. The first version of the application was developed for the use of electronic devices and circuits, and the plan got successful. Later on, it was called the Green project that led to the invention of Java.
Apart from its general purpose use, it is considered as a leading web-based technology. When it was invented, nobody knew how popular it would be. It is the first object oriented programming language that is platform independent and can run on any platform. It allows the developers to follow “Write Once, Run Anywhere” (WORA) concept. Though the base syntax of Java has been taken from C and C++, s...

Indice dei contenuti