• Complain

Michael Sikora - Java: Practical Guide for Programmers (The Practical Guides)

Here you can read online Michael Sikora - Java: Practical Guide for Programmers (The Practical Guides) full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2003, publisher: Morgan Kaufmann, genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

No cover
  • Book:
    Java: Practical Guide for Programmers (The Practical Guides)
  • Author:
  • Publisher:
    Morgan Kaufmann
  • Genre:
  • Year:
    2003
  • Rating:
    5 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 100
    • 1
    • 2
    • 3
    • 4
    • 5

Java: Practical Guide for Programmers (The Practical Guides): summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Java: Practical Guide for Programmers (The Practical Guides)" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

If youre an experienced programmer, you already have a rock-solid foundation for learning Java. All you need is a resource that takes your experience into account and explains Javas key principles and techniques in an intelligent, efficient way. Java: Practical Guide for Programmers is precisely that resource. Here, you wont have to wade through hundreds of pages of overly simplistic material to learn the basics of Java programming. Instead, you get highly focused instruction in the core elements of Java 1.4, accompanied by carefully chosen examples and line-by-line analyses that are right to the point. Youll be astonished at how soon you can begin productive coding in Java, and how quickly your skills will progress. Web resources:Source code from the book is no longer available athttp://www.zm.sikora.btinternet.co.uk/source.htmlPlease press the Companion Page button on the upper right side of this page to access a zip file containing it.Sun J2SE download pagehttp://java.sun.com/j2se/downloads.htmlSun J2SE API documentation http://java.sun.com/j2se/1.4.1/docs/index.html * Written expressly for people who already know a procedural or object-oriented programming language. * Takes a concise approach designed to make the most of the experience you already have. * Covers the core elements of Java 1.4, including language syntax, OO features, collections, exception handling, input/output, threads, event handling, and Swing components. * Filled with incisive coding examples and line-by-line analyses. * Via a companion Web site, provides downloadable example code and links to additional resources.

Michael Sikora: author's other books


Who wrote Java: Practical Guide for Programmers (The Practical Guides)? Find out the surname, the name of the author of the book and a list of all author's works by series.

Java: Practical Guide for Programmers (The Practical Guides) — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Java: Practical Guide for Programmers (The Practical Guides)" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make

Cover

title Java Practical Guide for Programmers author Sikora - photo 1


title:Java : Practical Guide for Programmers
author:Sikora, Zbigniew.
publisher:Elsevier
isbn10 | asin:1558609091
print isbn13:9781558609099
ebook isbn13:9780585449968
language:English
subjectJava (Computer program language)
publication date:2003
lcc:QA76.73.J38S55 2003eb
ddc:005.7/126/2
subject:Java (Computer program language)

Page i

Java
Practical Guide for Programmers

Page ii

The Morgan Kaufmann Practical Guides Series
Series Editor: Michael J. Donahoo

Java: Practical Guide for Programmers
Zbigniew M. Sikora

Multicast Sockets: Practical Guide for Programmers
David Makofske and Kevin Almeroth

The Struts Framework: Practical Guide for Java Programmers
Sue Spielman

TCP/IP Sockets in Java: Practical Guide for Programmers
Kenneth L. Calvert and Michael J. Donahoo

TCP/IP Sockets in C: Practical Guide for Programmers
Michael J. Donahoo and Kenneth L. Calvert

JDBC: Practical Guide for Java Programmers
Gregory D. Speegle

For further information on these books and for a list of forthcoming titles, please visit our Web site at www.mkp.com/practical .

Page iii

Java
Practical Guide for Programmers

Zbigniew M. Sikora
Independent Consultant

Page iv Senior Editor Rick Adams Publishing Services Manager Edward Wade - photo 2

Page iv

Senior Editor Rick Adams
Publishing Services Manager Edward Wade
Developmental Editor Karyn Johnson
Cover Design Yvo Riezebos Design
Cover Image Siede Preis/Getty Images
Text Design Side by Side Studios/Mark Ong
Composition and Illustration Windfall Software, using ZzTeX
Copyeditor Robert Fiske
Proofreader Sarah Burgundy
Indexer Steve Rath
Interior Printer The Maple-Vail Book Manufacturing Group
Cover Printer Phoenix Color Corporation

Designations used by companies to distinguish their products are often claimed as trademarks or registered trademarks. In all instances in which Morgan Kaufmann Publishers is aware of a claim, the product names appear in initial capital or all capital letters. Readers, however, should contact the appropriate companies for more complete information regarding trademarks and registration.

Morgan Kaufmann Publishers
An Imprint of Elsevier Science
340 Pine Street, Sixth Floor
San Francisco, CA 94104-3205
www.mkp.com

2003 by Elsevier Science (USA)
All rights reserved
Printed in the United States of America
07 06 05 04 03 5 4 3 2 1

No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any meanselectronic, mechanical, photocopying, recording, or otherwisewithout the prior written permission of the publisher.

Library of Congress Control Number: 2002114098
ISBN: 1-55860-909-1

This book is printed on acid-free paper.

Page v

To my mother, Janina

Page vi

This page intentionally left blank.

Page vii

Introduction

Simple Java Application

Java Tools

javac

java

Language Features

Basic Language Syntax

Comments

javadoc

Statements

Variables

Constants

Data Types

Integer Numbers

Real Numbers

Booleans

Characters

Strings

Arrays

Arithmetic Operations

Data Type Conversion

Flow Control

Conditional Statements

if Statement

if else Statement

else if Statement

Embedded Conditional Expressions

Switch Statement

Relational and Logical Operators

Bitwise Operators

Iteration Statements

while Loop

do while Loop

for Loop

break and continue Statements

Classes and Objects

Class and Object with No Methods

Class with Methods

Constructors

Page viii

Method Overloading

Argument Passing in Java

Instance and Static Variables

Instance and Static Methods

this Keyword

StringBu.er

Vectors

Object Wrappers

Inheritance and Access Control

Creating Subclasses

Casting Objects

The Object Class

equals Method

hashCode Method

toString Method

instanceof Operator

Abstract Classes and Methods

Interfaces

Packages

classpath Option

Access Control

Inner Classes

Exceptions

Exception Handling

Java Exception Classes

Creating Exception Classes

Propagation of Exceptions

Runtime Exceptions

Assertions

Input/Output

Terminal I/O Example

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Java: Practical Guide for Programmers (The Practical Guides)»

Look at similar books to Java: Practical Guide for Programmers (The Practical Guides). We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Java: Practical Guide for Programmers (The Practical Guides)»

Discussion, reviews of the book Java: Practical Guide for Programmers (The Practical Guides) and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.