Chitika

Sunday, April 10, 2011

java Specification














The Java Language Specification

The Java Language Specification, Third Edition - Written
by the inventors of the technology, The Java Language Specification,
Third Edition is the definitive technical reference for the Java
programming language. If you want to know the precise meaning of the
language's constructs, this is the source for you.

The book provides complete, accurate, and detailed coverage of the Java
programming language. It provides full coverage of all new features
added in since the previous edition including generics, annotations,
asserts, autoboxing, enums, for each loops, variable arity methods and
static import clauses.

You may print this book once. The printed version of this draft book
may not be photocopied without the express written permission of Sun.
For the complete copyright notice, see Copyright. The online version differs from the print version in minor ways, primarily the absence of quotations due to copyright issues.




View HTML



Download HTML (4616K)



Download PDF (7932K)



Order via amazon.com
Maintenance information for The Java Language
Specification
(Third Edition).

Please send comments and errata to the authors using our feedback form.

James Gosling is a Fellow and Chief Technology Officer of Sun's
Developer Products group, the
creator of the Java programming language, and one of the computer
industry's most noted programmers. He is the 1996 recipient of Software
Development's "Programming Excellence Award." He previously developed NeWS,
Sun's network-extensible window system, and was a principal in the Andrew
project at Carnegie Mellon University, where he earned a Ph.D. in Computer
Science.

Bill Joy is a co-founder of Sun Microsystems,
where he led the company's technical strategy until September 2003,
working on both hardware
and software architecture. He is well known as the creator of the Berkeley
version of the UNIX operating system, for which he received a lifetime
achievement award from the USENIX Association in 1993. He received the ACM
Grace Murray Hopper Award in 1986. Joy has had a central role in shaping
the Java programming language. He joined KPCB as Partner in January 2005.

Guy L. Steele Jr. is a Sun Fellow at Sun Microsystems Laboratories, where he
is responsible for research in language design and implementation strategies,
parallel algorithms, and computer arithmetic. He is well known as the co-creator of the
Scheme programming language and for his reference books for the C programming
language (with Samuel Harbison) and for the Common Lisp programming language.
Steele received the ACM Grace Murray Hopper Award in 1988 and was named an ACM
Fellow in 1994, a member of the National Academy of Engineering in 2001, and a
fellow of the American Academy of Arts and Science in 2002. He also received
the 1996 ACM SIGPLAN Programming Languages Achievement Award and the 2005
Dr Dobb's Journal Excellence In Programming Award.

Gilad Bracha is Computational Theologist at Sun Microsystems, and a
researcher
in the area of object-oriented programming languages. Prior to joining
Sun, he
worked on Strongtalk, the Animorphic Smalltalk System. He holds a B.Sc.
in
Mathematics and Computer Science from Ben Gurion University in Israel
and a Ph.D. in Computer Science from the University of Utah.




The Java Language
Specification, Second Edition
- Written by the inventors of the technology,
this book is the definitive technical reference
for the Java programming language. If you want to know the precise
meaning of the language's constructs, this is the source for you.

The book provides complete, accurate, and detailed coverage of the
syntax and semantics of the Java programming language. It describes
all aspects of the language, including the semantics of all types,
statements, and expressions, as well as threads and binary compatibility.



You may print this book once. The printed version of this draft
book may not be photocopied without the express written permission of
Sun. For the complete copyright notice, see Copyright.




View HTML



Download HTML via HTTP (tar.Z, ~573K)



Download HTML via HTTP (zip, ~409K)



Download PDF (~4420K)


Order this book through

DigitalGuru
amazon.com

Clarifications and Amendments to The Java Language
Specification
(Second Edition).





The Java Language Specification (First Edition) - With the publication of this book,
James Gosling, Bill Joy, and Guy Steele provide the definitive technical
reference for the Java programming language. It provides complete, accurate,
and detailed coverage of the entire language and its syntax. If you want to
know the precise meaning of Java's constructs, this is the source.
Published in 1996 by
Addison-Wesley.




Book Description




Table of Contents



Order this book through

DigitalGuru
amazon.com

You may print this book once. The printed version of this draft
book may not be photocopied without the express written permission of
Sun. For the complete copyright notice, see Copyright.




View HTML





Download HTML
(tar.Z, ~865K)





Download HTML
(zip, ~600K)





Download PDF
(~3706K)





Download PostScript
(tar.Z, ~1765K)





Download PostScript
(zip, ~1267K)

Changes for Java 1.1
- Originally published as Appendix D from
The Java Programming Language by Ken Arnold.


Clarifications and Amendments
to The Java Language Specification
(First Edition).


Oracle is reviewing the Sun product roadmap and will provide guidance
to customers in accordance with Oracle's standard product communication
policies. Any resulting features and timing of release of such features
as determined by Oracle's review of roadmaps, are at the sole
discretion of Oracle. All product roadmap information, whether
communicated by Sun Microsystems or by Oracle, does not represent a
commitment to deliver any material, code, or functionality, and should
not be relied upon in making purchasing decisions. It is intended for
information purposes only, and may not be incorporated into any
contract.








Thursday, April 7, 2011

Java Introduction

Introduction to Programming Using Java, Fifth Edition

Version 5.0, December 2006

Version 5.1.2, with minor corrections and updates, June 2010
(Version 5 Final Release)




WELCOME TO the fifth edition of Introduction to Programming Using Java,
a free, on-line textbook on introductory
programming, which uses Java as the language of instruction. This book is directed
mainly towards beginning programmers, although it might also be useful for experienced
programmers who want to learn something about Java. It is certainly not meant to
provide complete coverage of the Java language.

The fifth edition covers Java 5.0 and can also be used with later versions of Java.
You will find many Java applets
on the web pages that make up this book, and many of those applets require
Java 5.0 or higher to function. Earlier editions, which covered earlier versions
of Java, are still available; see the preface
for links.

You can download Introduction to Programming Using Java for use on your
own computer. PDF and print versions are also available.
Links can be found at the bottom of this page.

Search this Text: Although this book does not have a
conventional index, you can search it for terms that interest you. Note that
this feature searches the book at its on-line site, so you must be working
on-line to use it.

Search Introduction to Programming Using Java for pages...

Short Table of Contents:

Core Java prog 10.

Core Java Program 10:

/* Write a program to find sum of all integers greater than 100 and

less than 200 that are divisible by 7 */

class SumOfDigit{

public static void main(String args[]){

int result=0;

for(int i=100;i<=200;i++){

if(i%7==0)

result+=i;

}

System.out.println("Output of Program is : "+result);

}

}

Core Java prog 9.

Core Java Program 9:

/*Write a program to find Fibonacci series of a given no.

Example :

Input - 8

Output - 1 1 2 3 5 8 13 21

*/

class Fibonacci{

public static void main(String args[]){

int num = Integer.parseInt(args[0]); //taking no. as command line argument.

System.out.println("*****Fibonacci Series*****");

int f1, f2=0, f3=1;

for(int i=1;i<=num;i++){

System.out.print(" "+f3+" ");

f1 = f2;

f2 = f3;

f3 = f1 + f2;

}

}

}

Core Java prog 8.

Core Java Program 8:


/*Write a program to Reverse a given no. */

class Reverse{

public static void main(String args[]){

int num = Integer.parseInt(args[0]); //take argument as command line

int remainder, result=0;

while(num>0){

remainder = num%10;

result = result * 10 + remainder;

num = num/10;

}

System.out.println("Reverse number is : "+result);

}

}

Core Java prog 7.

Core Java Program 7:


/*Write a program to Find Factorial of Given no. */

class Factorial{

public static void main(String args[]){

int num = Integer.parseInt(args[0]); //take argument as command line

int result = 1;

while(num>0){

result = result * num;

num--;

}

System.out.println("Factorial of Given no. is : "+result);

}

}

Core Java prog 6.

Core Java Program 6:


/*Write a program to find SUM AND PRODUCT of a given Digit. */

class Sum_Product_ofDigit{

public static void main(String args[]){

int num = Integer.parseInt(args[0]); //taking value as command line argument.

int temp = num,result=0;

//Logic for sum of digit

while(temp>0){

result = result + temp;

temp--;

}

System.out.println("Sum of Digit for "+num+" is : "+result);

//Logic for product of digit

temp = num;

result = 1;

while(temp > 0){

result = result * temp;

temp--;

}

System.out.println("Product of Digit for "+num+" is : "+result);

}

}

Core Java prog 5.

Core Java Program 5:


/* Write a program to display a greet message according to

Marks obtained by student.

*/

class SwitchDemo{

public static void main(String args[]){

int marks = Integer.parseInt(args[0]); //take marks as command line argument.

switch(marks/10){

case 10:

case 9:

case 8:

System.out.println("Excellent");

break;

case 7:

System.out.println("Very Good");

break;

case 6:

System.out.println("Good");

break;

case 5:

System.out.println("Work Hard");

break;

case 4:

System.out.println("Poor");

break;

case 3:

case 2:

case 1:

case 0:

System.out.println("Very Poor");

break;

default:

System.out.println("Invalid value Entered");

}

}

}

Core Java prog 4.

Core Java Program 3:


/*Write a program to generate 5 Random nos. between 1 to 100, and it

should not follow with decimal point.

*/

class RandomDemo{

public static void main(String args[]){

for(int i=1;i<=5;i++){

System.out.println((int)(Math.random()*100));

}

}

}

Core Java prog 3.

Core Java Program 3:


/* Write a program that will read a float type value from the keyboard and print the following output.

->Small Integer not less than the number.

->Given Number.

->Largest Integer not greater than the number.

*/

class ValueFormat{

public static void main(String args[]){

double i = 34.32; //given number

System.out.println("Small Integer not greater than the number : "+Math.ceil(i));

System.out.println("Given Number : "+i);

System.out.println("Largest Integer not greater than the number : "+Math.floor(i));

}

Core Java prog 2.

Core Java Program 2:



//Find Minimum of 2 nos. using conditional operator

class Minof2{

public static void main(String args[]){

//taking value as command line argument.

//Converting String format to Integer value

int i = Integer.parseInt(args[0]);

int j = Integer.parseInt(args[1]);

int result = (i

System.out.println(result+" is a minimum value");

}

}

Core JAVA 1

Core Java Program 1:


//Find Maximum of 2 nos.

class Maxof2{

public static void main(String args[]){

//taking value as command line argument.

//Converting String format to Integer value

int i = Integer.parseInt(args[0]);

int j = Integer.parseInt(args[1]);

if(i > j)

System.out.println(i+" is greater than "+j);

else

System.out.println(j+" is greater than "+i);

}

}

Area Of A Circle

Calculate Circle Area using Java Example

1. /*

2.Calculate Circle Area using Java Example

3.This Calculate Circle Area using Java Example shows how to calculate

4.area of circle using it's radius.

5.*/

6.


7.import java.io.BufferedReader;

8.import java.io.IOException;

9.import java.io.InputStreamReader;

10.

11.public class CalculateCircleAreaExample {

12.


13.public static void main(String[] args) {

14.

15.int radius = 0;

16.System.out.println("Please enter radius of a circle");

17.


18.try

19.{

20.//get the radius from console

21.BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

22.radius = Integer.parseInt(br.readLine());

23.}

24.//if invalid value was entered


25.catch(NumberFormatException ne)

26.{

27.System.out.println("Invalid radius value" + ne);

28.System.exit(0);

29.}

30.catch(IOException ioe)

31.{


32.System.out.println("IO Error :" + ioe);

33.System.exit(0);

34.}

35.

36./*

37.* Area of a circle is

38.* pi * r * r

39.* where r is a radius of a circle.

40.*/

41.

42.//NOTE : use Math.PI constant to get value of pi

43.double area = Math.PI * radius * radius;

44.

45.System.out.println("Area of a circle is " + area);

46.}

47.}

48.

49./*

50.Output of Calculate Circle Area using Java Example would be

51.Please enter radius of a circle

52.19

53.Area of a circle is 1134.1149479459152

54.*/

JAVA PROGRAMS

List of Java programs.

Here is a complete list of the
Java programs in the textbook.
Click on the program name to access the Java code;
click on the reference number for a brief description;
read the textbook for a full discussion.
You can download them all together
as IntroProgramming.zip.




1 ELEMENTS OF PROGRAMMING
1.1.1 HelloWorld.java Hello, World
1.1.2 UseArgument.java Using a command-line argument
1.2.1 Ruler.java String concatenation example
1.2.2 IntOps.java Integer multiplication and division
1.2.3 Quadratic.java Quadratic formula
1.2.4 LeapYear.java Leap year
1.2.5 RandomInt.java Casting to get a random integer
1.3.1 Flip.java Flippling a fair coin
1.3.2 EightHellos.java Your first while loop
1.3.3 PowersOfTwo.java Computing powers of two
1.3.4 DivisorPattern.java Your first nested loops
1.3.5 Harmonic.java Harmonic numbers
1.3.6 Sqrt.java Newton's method
1.3.7 Binary.java Converting to binary
1.3.8 Gambler.java Gambler's ruin simulation
1.3.9 Factors.java Factoring integers
1.4.1 Sample.java Sampling without replacement
1.4.2 CouponCollector.java Coupon collector simulation
1.4.3 PrimeSieve.java Sieve of Eratosthenes
1.4.4 SelfAvoidingWalk.java Self-avoiding random walks
1.5.1 RandomSeq.java Generating a random sequence
1.5.2 TwentyQuestions.java Interactive user input
1.5.3 Average.java Averaging a stream of numbers
1.5.4 RangeFilter.java A simple filter
1.5.5 PlotFilter.java Input-to-drawing filter
1.5.6 BouncingBall.java Bouncing ball
1.5.7 PlayThatTune.java Digital signal processing
1.6.1 Transition.java Computing the transition matrix
1.6.2 RandomSurfer.java Simulating a random surfer
1.6.3 Markov.java Mixing a Markov chain
2 FUNCTIONS
2.1.1 Newton.java Newton's method (revisited)
2.1.2 Gaussian.java Gaussian functions
2.1.3 Coupon.java Coupon collector (revisited)
2.1.4 PlayThatTune.java Play that Tune (revisited)
2.2.1 StdRandom.java Random number library
2.2.2 StdArrayIO.java Array I/O library
2.2.3 IFS.java Iterated function systems
2.2.4-5 StdStats.java Data analysis library
2.2.6 Bernoulli.java Bernoulli trials
2.3.1 Euclid.java Euclid's algorithm
2.3.2 TowersOfHanoi.java Towers of Hanoi
2.3.3 Beckett.java Gray code
2.3.4 Htree.java Recursive graphics
2.3.5 Brownian.java Brownian bridge
2.4.1 Percolation.java Percolation scaffolding
2.4.2 VerticalPercolation.java Vertical percolation
2.4.3 Visualize.java Visualization client
2.4.4 Estimate.java Percolation probability estimate
2.4.5 Percolation.java Percolation detection
2.4.6 PercPlot.java Adaptive plot client
3 OBJECT ORIENTED PROGRAMMING
3.1.1 ChargeClient.java Charged particles
3.1.2 AlbersSquares.java Albers squares
3.1.3 Luminance.java Luminance library
3.1.4 Grayscale.java Converting color to grayscale
3.1.5 Scale.java Image scaling
3.1.6 Fade.java Fade effect
3.1.7 Potential.java Visualizing electric potential
3.1.8 GeneFind.java Finding genes in a genome
3.1.9 Cat.java Concatenating files
3.1.10 StockQuote.java Screen scraping for stock quotes
3.1.11 Split.java Splitting a file
3.2.1 Charge.java Charged-particle implementation
3.2.2 Stopwatch.java Stopwatch
3.2.3 Histogram.java Histogram
3.2.4 Turtle.java Turtle graphics
3.2.5 Spiral.java Spira mirabilis
3.2.6 Complex.java Complex numbers
3.2.7 Mandelbrot.java Mandelbrot set
3.2.8 StockAccount.java Stock account
3.3.1 Complex.java Complex numbers (revisited)
3.3.2 Counter.java Counter
3.3.3 Vector.java Spatial vectors
3.3.4 Document.java Document
3.3.5 CompareAll.java Similarity detection
3.4.1 Body.java Gravitational body
3.4.2 Universe.java N-body simulation
4 DATA STRUCTURES
4.1.1 ThreeSum.java 3-sum problem
4.1.2 DoublingTest.java Validating a doubling hypothesis
4.2.1 TwentyQuestions.java Binary search (20 questions)
4.2.2 Gaussian.java Bisection search (function inversion)
4.2.3 BinarySearch.java Binary search (sorted array)
4.2.4 Insertion.java Insertion sort
4.2.5 InsertionTest.java Doubling test for insertion sort
4.2.6 Merge.java Mergesort
4.2.7 FrequencyCount.java Frequency counts
4.2.8 LRS.java Longest repeated substring
4.3.1 ArrayStackOfStrings.java Stack of strings (array)
4.3.2 LinkedStackOfStrings.java Stack of strings (linked list)
4.3.3 DoublingStackOfStrings.java Stack of strings (array doubling)
4.3.4 Stack.java Generic stack
4.3.5 Evaluate.java Expression evaluation
4.3.6 Queue.java Generic FIFO queue (linked list)
4.3.7 MD1Queue.java M/D/1 queue simulation
4.3.8 LoadBalance.java Load balancing simulation
4.4.1 Lookup.java Dictionary lookup
4.4.2 Index.java Indexing
4.4.3 BST.java BST symbol table
4.4.4 DeDup.java Dedup filter
4.5.1 Graph.java Graph data type
4.5.2 IndexGraph.java Using a graph to invert an index
4.5.3 PathFinder.java Shortest-paths client
4.5.4 PathFinder.java Shortest-paths implementation
4.5.5 SmallWorld.java Small-world test

JAVA Introduction AND About JAVA

JAVA INTRODUCTION & ABOUT JAVA


Java is great programming language for the development of enterprise grade applications.

This programming Language is evolved from a language named Oak. Oak was developed in the early nineties at Sun Microsystems as a platform-independent language aimed at allowing entertainment appliances such as video game consoles and VCRs to communicate . Oak was first slated to appear in television set-top boxes designed to provide video-on-demand services. Oak was unsuccessful so in 1995 Sun changed the name to Java and modified the language to take advantage of the burgeoning World Wide Web.




Java is an object-oriented language, and this is very similar to C++. Java Programming Language is simplified to eliminate language features that cause common programming errors. Java source code files are compiled into a format called bytecode, which can then be executed by a Java interpreter.

JAVA DOWNLOADS

Java Downloads for All Operating Systems


Recommended Version 6 Update 24

Select the file according to your operating system from the list below to get the latest Java for your computer.


Remove Older Versions







Windows 7, XP Online


filesize:
~ 10 MB
Instructions



After installing Java, restart your browser and verify Java has been installed correctly.







Windows 7, XP Offline



filesize:
15.3 MB
Instructions


Information about the 64-bit Java plug-in







Solaris





Solaris (32-bit)

filesize:
24.8 MB
Instructions




After installing Java, restart your browser and verify Java has been installed correctly.






Solaris (64-bit)*


filesize:
10.6 MB + 24.3 MB 32-bit Solaris
Instructions





Solaris x86

filesize:
18.9 MB
Instructions





Solaris x64 *

filesize:
6.9 MB
Instructions

* Please use the 32-bit version for Java applet and Java Web Start support.


Linux





Linux RPM (self-extracting file)

filesize:
19.7 MB

Instructions



After installing Java, restart your browser and verify Java has been installed correctly.






Linux (self-extracting file)

filesize:
20.2 MB

Instructions





Linux x64 *

filesize:
19.6 MB

Instructions





Linux x64 RPM *

filesize:
189.1 MB

Instructions

* Please use the 32-bit version for Java applet and Java Web Start support.







Apple (OS X)

Apple supplies their own version of Java. Use the Software Update feature (available on the Apple menu) to check that you have the most up-to-date version of Java for your Mac.



OpenOffice.org



OpenOffice.org

Free, easy to use and full-featured office suite that supports all kinds
of documents, including Microsoft Office, Acrobat PDF and Open Document
Format.




What is Java?

Java allows you to play online games, chat with people around the world,
calculate your mortgage interest, and view images in 3D, just to name a
few. It's also integral to the intranet applications and other
e-business solutions that are the foundation of corporate computing.

After you've downloaded Java, visit java.com to check out Java in Action in your daily life.



Java software for your computer, or the Java Runtime
Environment, is also referred to as the Java Runtime, Runtime
Environment, Runtime, JRE, Java Virtual Machine, Virtual Machine, Java
VM, JVM, VM, or Java download.

Available Operating Systems

Feedback

JAVA Pltform

Practices

Java Platform


One characteristic of Java is portability, which means that computer
programs written in the Java language must run similarly on any
supported hardware/operating-system platform. This is achieved by
compiling the Java language code to an intermediate representation
called Java bytecode, instead of directly to platform-specific machine code. Java bytecode instructions are analogous to machine code, but are intended to be interpreted by a virtual machine (VM) written specifically for the host hardware. End-users commonly use a Java Runtime Environment (JRE) installed on their own machine for standalone Java applications, or in a Web browser for Java applets.

Standardized libraries provide a generic way to access host-specific features such as graphics, threading, and networking.

A major benefit of using bytecode is porting. However, the overhead
of interpretation means that interpreted programs almost always run more
slowly than programs compiled to native executables would. Just-in-Time
compilers were introduced from an early stage that compile bytecodes to
machine code during runtime.

Implementations

Sun Microsystems officially licenses the Java Standard Edition platform for Linux,[21] Mac OS X,[22] and Solaris. Although in the past Sun has licensed Java to Microsoft, the license has expired and has not been renewed.[23] Through a network of third-party vendors and licensees,[24] alternative Java environments are available for these and other platforms.

Sun's trademark license for usage of the Java brand insists that all
implementations be "compatible". This resulted in a legal dispute with Microsoft after Sun claimed that the Microsoft implementation did not support RMI or JNI
and had added platform-specific features of their own. Sun sued in
1997, and in 2001 won a settlement of US$20 million, as well as a court
order enforcing the terms of the license from Sun.[25] As a result, Microsoft no longer ships Java with Windows, and in recent versions of Windows, Internet Explorer
cannot support Java applets without a third-party plugin. Sun, and
others, have made available free Java run-time systems for those and
other versions of Windows.

Platform-independent Java is essential to the Java EE
strategy, and an even more rigorous validation is required to certify
an implementation. This environment enables portable server-side
applications, such as Web services, Java Servlets, and Enterprise JavaBeans, as well as with embedded systems based on OSGi, using Embedded Java environments. Through the new GlassFish project, Sun is working to create a fully functional, unified open source implementation of the Java EE technologies.

Sun also distributes a superset of the JRE called the Java Development Kit (commonly known as the JDK), which includes development tools such as the Java compiler, Javadoc, Jar, and debugger.

Performance

Programs written in Java have a reputation for being slower and requiring more memory than those written in C.[26] However, Java programs' execution speed improved significantly with the introduction of Just-in-time compilation in 1997/1998 for Java 1.1,[27]
the addition of language features supporting better code analysis (such
as inner classes, StringBuffer class, optional assertions, etc.), and
optimizations in the Java Virtual Machine itself, such as HotSpot becoming the default for Sun's JVM in 2000. Currently, Java code has approximately half the performance of C code.[28]

Some platforms offer direct hardware support for Java; there are
microcontrollers that can run java in hardware instead of a software
JVM, and ARM based processors can have hardware support for executing
Java bytecode through its Jazelle option.

Automatic memory management

Java uses an automatic garbage collector to manage memory in the object lifecycle.
The programmer determines when objects are created, and the Java
runtime is responsible for recovering the memory once objects are no
longer in use. Once no references to an object remain, the unreachable memory becomes eligible to be freed automatically by the garbage collector. Something similar to a memory leak
may still occur if a programmer's code holds a reference to an object
that is no longer needed, typically when objects that are no longer
needed are stored in containers that are still in use. If methods for a
nonexistent object are called, a "null pointer exception" is thrown.[29][30]

One of the ideas behind Java's automatic memory management model is
that programmers can be spared the burden of having to perform manual
memory management. In some languages, memory for the creation of objects
is implicitly allocated on the stack, or explicitly allocated and deallocated from the heap.
In the latter case the responsibility of managing memory resides with
the programmer. If the program does not deallocate an object, a memory leak
occurs. If the program attempts to access or deallocate memory that has
already been deallocated, the result is undefined and difficult to
predict, and the program is likely to become unstable and/or crash. This
can be partially remedied by the use of smart pointers,
but these add overhead and complexity. Note that garbage collection
does not prevent "logical" memory leaks, i.e. those where the memory is
still referenced but never used.

Garbage collection may happen at any time. Ideally, it will occur
when a program is idle. It is guaranteed to be triggered if there is
insufficient free memory on the heap to allocate a new object; this can
cause a program to stall momentarily. Explicit memory management is not
possible in Java.

Java does not support C/C++ style pointer arithmetic,
where object addresses and unsigned integers (usually long integers)
can be used interchangeably. This allows the garbage collector to
relocate referenced objects and ensures type safety and security.

As in C++ and some other object-oriented languages, variables of Java's primitive data types are not objects. Values of primitive types are either stored directly in fields (for objects) or on the stack (for methods) rather than on the heap, as commonly true for objects (but see Escape analysis).
This was a conscious decision by Java's designers for performance
reasons. Because of this, Java was not considered to be a pure
object-oriented programming language. However, as of Java 5.0, autoboxing enables programmers to proceed as if primitive types were instances of their wrapper class.

Java contains multiple types of garbage collectors. By default, HotSpot uses the Concurrent Mark Sweep collector,
also known as the CMS Garbage Collector. However, there are also
several other garbage collectors that can be used to manage the Heap.
For 90% of applications in Java, the CMS Garbage Collector is good
enough.[31]

Syntax

The syntax of Java is largely derived from C++.
Unlike C++, which combines the syntax for structured, generic, and
object-oriented programming, Java was built almost exclusively as an
object-oriented language. All code is written inside a class, and
everything is an object, with the exception of the primitive data types
(integers, floating-point numbers, boolean values, and characters),
which are not classes for performance reasons.

Java suppresses several features (such as operator overloading and multiple inheritance) for classes in order to simplify the language and to prevent possible errors and anti-pattern design.

Java uses similar commenting methods to C++. There are three
different styles of comment: a single line style marked with two slashes
(//), a multiple line style opened with a slash asterisk (/*) and
closed with an asterisk slash (*/), and the Javadoc
commenting style opened with a slash and two asterisks (/**) and closed
with an asterisk slash (*/). The Javadoc style of commenting allows the
user to run the Javadoc executable to compile documentation for the
program.

Example:

// This is an example of a single line comment using two slashes

/* This is an example of a multiple line comment using the slash and asterisk.
This type of comment can be used to hold a lot of information or deactivate
code but it is very important to remember to close the comment. */

/**
* This is an example of a Javadoc comment; Javadoc can compile documentation
*  from this text.
*/
Examples

Hello world

The traditional Hello world program can be written in Java as:

/**
* @param args Command-line arguments
* Output "Hello, world!", then exit.
*/
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, world!");
}
}

To compare this to other programming languages see the list of hello world program examples.

Source files must be named after the public class they contain, appending the suffix .java, for example, HelloWorld.java. It must first be compiled into bytecode, using a Java compiler, producing a file named HelloWorld.class.
Only then can it be executed, or 'launched'. The java source file may
only contain one public class but can contain multiple classes with less
than public access and any number of public inner classes.

A class that is not declared public
may be stored in any .java file. The compiler will generate a class
file for each class defined in the source file. The name of the class
file is the name of the class, with .class appended. For class file generation, anonymous classes are treated as if their name were the concatenation of the name of their enclosing class, a $, and an integer.

The keyword public
denotes that a method can be called from code in other classes, or that
a class may be used by classes outside the class hierarchy. The class
hierarchy is related to the name of the directory in which the .java
file is located.

The keyword static in front of a method indicates a static method,
which is associated only with the class and not with any specific
instance of that class. Only static methods can be invoked without a
reference to an object. Static methods cannot access any method
variables that are not static.

The keyword void indicates that the main method
does not return any value to the caller. If a Java program is to exit
with an error code, it must call System.exit() explicitly.

The method name "main" is not a keyword in the Java
language. It is simply the name of the method the Java launcher calls to
pass control to the program. Java classes that run in managed
environments such as applets and Enterprise JavaBean do not use or need a main() method. A java program may contain multiple classes that have main methods, which means that the VM needs to be explicitly told which class to launch from.

The main method must accept an array of String objects. By convention, it is referenced as args although any other legal identifier name can be used. Since Java 5, the main method can also use variable arguments, in the form of public static void main(String... args), allowing the main method to be invoked with an arbitrary number of String arguments. The effect of this alternate declaration is semantically identical (the args parameter is still an array of String objects), but allows an alternative syntax for creating and passing the array.

The Java launcher launches Java by loading a given class (specified on the command line or as an attribute in a JAR) and starting its public static void main(String[]) method. Stand-alone programs must declare this method explicitly. The String[] args parameter is an array of String objects containing any arguments passed to the class. The parameters to main are often passed by means of a command line.

Printing is part of a Java standard library: The System class defines a public static field called out. The out object is an instance of the PrintStream class and provides many methods for printing data to standard out, including println(String) which also appends a new line to the passed string.

The string "Hello, world!" is automatically converted to a String object by the compiler.

A more comprehensive example

// OddEven.java
import javax.swing.JOptionPane;

public class OddEven {
// "input" is the number that the user gives to the computer
private int input; // a whole number("int" means integer)

/*
* This is the constructor method. It gets called when an object of the OddEven type
* is being created.
*/
public OddEven() {
/*
* In most Java programs constructors can initialize objects with default values, or create
* other objects that this object might use to perform its functions. In some Java programs, the
* constructor may simply be an empty function if nothing needs to be initialized prior to the
* functioning of the object.  In this program's case, an empty constructor would suffice, even if
* it is empty. A constructor must exist, however if the user doesn't put one in then the compiler
* will create an empty one.
*/
}

// This is the main method. It gets called when this class is run through a Java interpreter.
public static void main(String[] args) {
 /*
  * This line of code creates a new instance of this class called "number" (also known as an
  * Object) and initializes it by calling the constructor.  The next line of code calls
  * the "showDialog()" method, which brings up a prompt to ask you for a number
  */
 OddEven number = new OddEven();
 number.showDialog();
}

public void showDialog() {
 /*
  * "try" makes sure nothing goes wrong. If something does,
  * the interpreter skips to "catch" to see what it should do.
  */
 try {
     /*
      * The code below brings up a JOptionPane, which is a dialog box
      * The String returned by the "showInputDialog()" method is converted into
      * an integer, making the program treat it as a number instead of a word.
      * After that, this method calls a second method, calculate() that will
      * display either "Even" or "Odd."
      */
     input = Integer.parseInt(JOptionPane.showInputDialog("Please Enter A Number"));
     calculate();
 } catch (NumberFormatException e) {
     /*
      * Getting in the catch block means that there was a problem with the format of
      * the number. Probably some letters were typed in instead of a number.
      */
     System.err.println("ERROR: Invalid input. Please type in a numerical value.");
 }
}

/*
* When this gets called, it sends a message to the interpreter.
* The interpreter usually shows it on the command prompt (For Windows users)
* or the terminal (For Linux users).(Assuming it's open)
*/
private void calculate() {
 if (input % 2 == 0) {
     System.out.println("Even");
 } else {
     System.out.println("Odd");
 }
}
}
  • The import statement imports the JOptionPane class from the javax.swing package.
  • The OddEven class declares a single private field of type int named input. Every instance of the OddEven class has its own copy of the input field. The private declaration means that no other class can access (read or write) the input field.
  • OddEven() is a public constructor. Constructors have the same name as the enclosing class they are declared in, and unlike a method, have no return type. A constructor is used to initialize an object that is a newly created instance of the class.
  • The calculate() method is declared without the static keyword. This means that the method is invoked using a specific instance of the OddEven class. (The reference used to invoke the method is passed as an undeclared parameter of type OddEven named this.) The method tests the expression input % 2 == 0 using the if keyword to see if the remainder of dividing the input field belonging to the instance of the class by two is zero. If this expression is true, then it prints Even; if this expression is false it prints Odd. (The input field can be equivalently accessed as this.input, which explicitly uses the undeclared this parameter.)
  • OddEven number = new OddEven(); declares a local object reference variable in the main method named number. This variable can hold a reference to an object of type OddEven. The declaration initializes number by first creating an instance of the OddEven class, using the new keyword and the OddEven() constructor, and then assigning this instance to the variable.
  • The statement number.showDialog(); calls the calculate method. The instance of OddEven object referenced by the number local variable is used to invoke the method and passed as the undeclared this parameter to the calculate method.
  • input = Integer.parseInt(JOptionPane.showInputDialog("Please Enter A Number")); is a statement that converts the type of String to the primitive data type int by using a utility function in the primitive wrapper class Integer.

Special classes

Applet

Java applets are programs that are embedded in other applications, typically in a Web page displayed in a Web browser.

// Hello.java
import javax.swing.JApplet;
import java.awt.Graphics;

public class Hello extends JApplet {

@Override
public void paintComponent(Graphics g) {
 g.drawString("Hello, world!", 65, 95);
}

}

The import statements direct the Java compiler to include the javax.swing.JApplet and java.awt.Graphics classes in the compilation. The import statement allows these classes to be referenced in the source code using the simple class name (i.e. JApplet) instead of the fully qualified class name (i.e. javax.swing.JApplet).

The Hello class extends (subclasses) the JApplet (Java Applet) class; the JApplet class provides the framework for the host application to display and control the lifecycle of the applet. The JApplet class is a JComponent (Java Graphical Component) which provides the applet with the capability to display a graphical user interface (GUI) and respond to user events.

The Hello class overrides the paintComponent(Graphics) method inherited from the Container superclass to provide the code to display the applet. The paintComponent() method is passed a Graphics object that contains the graphic context used to display the applet. The paintComponent() method calls the graphic context drawString(String, int, int) method to display the "Hello, world!" string at a pixel offset of (65, 95) from the upper-left corner in the applet's display.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<!-- Hello.html -->
<html>
<head>
<title>Hello World Applet</title>
</head>
<body>
<applet code="Hello" width="200" height="200">
</applet>
</body>
</html>

An applet is placed in an HTML document using the <applet> HTML element. The applet tag has three attributes set: code="Hello" specifies the name of the JApplet class and width="200" height="200" sets the pixel width and height of the applet. Applets may also be embedded in HTML using either the object or embed element,[32] although support for these elements by Web browsers is inconsistent.[33] However, the applet tag is deprecated, so the object tag is preferred where supported.

The host application, typically a Web browser, instantiates the Hello applet and creates an AppletContext for the applet. Once the applet has initialized itself, it is added to the AWT display hierarchy. The paintComponent() method is called by the AWT event dispatching thread whenever the display needs the applet to draw itself.

Servlet

Java Servlet technology provides Web developers with a simple,
consistent mechanism for extending the functionality of a Web server and
for accessing existing business systems. Servlets are server-side Java EE components that generate responses (typically HTML pages) to requests (typically HTTP requests) from clients. A servlet can almost be thought of as an applet that runs on the server side—without a face.

// Hello.java
import java.io.*;
import javax.servlet.*;

public class Hello extends GenericServlet {
public void service(ServletRequest request, ServletResponse response)
     throws ServletException, IOException {
response.setContentType("text/html");
final PrintWriter pw = response.getWriter();
pw.println("Hello, world!");
pw.close();
}
}

The import statements direct the Java compiler to include all of the public classes and interfaces from the java.io and javax.servlet packages in the compilation.

The Hello class extends the GenericServlet class; the GenericServlet class provides the interface for the server to forward requests to the servlet and control the servlet's lifecycle.

The Hello class overrides the service(ServletRequest, ServletResponse) method defined by the Servlet interface to provide the code for the service request handler. The service() method is passed a ServletRequest object that contains the request from the client and a ServletResponse object used to create the response returned to the client. The service() method declares that it throws the exceptions ServletException and IOException if a problem prevents it from responding to the request.

The setContentType(String) method in the response object is called to set the MIME content type of the returned data to "text/html". The getWriter() method in the response returns a PrintWriter object that is used to write the data that is sent to the client. The println(String) method is called to write the "Hello, world!" string to the response and then the close()
method is called to close the print writer, which causes the data that
has been written to the stream to be returned to the client.

JavaServer Pages

JavaServer Pages (JSP) are server-side Java EE components that generate responses, typically HTML pages, to HTTP requests from clients. JSPs embed Java code in an HTML page by using the special delimiters <% and %>. A JSP is compiled to a Java servlet, a Java application in its own right, the first time it is accessed. After that, the generated servlet creates the response.

Swing application

Swing is a graphical user interface library for the Java SE platform. It is possible to specify a different look and feel through the pluggable look and feel system of Swing. Clones of Windows, GTK+ and Motif are supplied by Sun. Apple also provides an Aqua look and feel for Mac OS X.
Where prior implementations of these looks and feels may have been
considered lacking, Swing in Java SE 6 addresses this problem by using
more native GUI widget drawing routines of the underlying platforms.

This example Swing application creates a single window with "Hello, world!" inside:

// Hello.java (Java SE 5)
import javax.swing.*;

public class Hello extends JFrame {
public Hello() {
 super("hello");
 setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
 add(new JLabel("Hello, world!"));
 setVisible(true);
 pack();
}

public static void main(String[] args) {
 new Hello();
}
}

The first import includes all of the public classes and interfaces from the javax.swing package.

The Hello class extends the JFrame class; the JFrame class implements a window with a title bar and a close control.

The Hello() constructor initializes the frame by first calling the superclass constructor, passing the parameter "hello", which is used as the window's title. It then calls the setDefaultCloseOperation(int) method inherited from JFrame to set the default operation when the close control on the title bar is selected to WindowConstants.EXIT_ON_CLOSE — this causes the JFrame
to be disposed of when the frame is closed (as opposed to merely
hidden), which allows the JVM to exit and the program to terminate.
Next, a JLabel is created for the string "Hello, world!" and the add(Component) method inherited from the Container superclass is called to add the label to the frame. The pack() method inherited from the Window superclass is called to size the window and lay out its contents.

The main() method is called by the JVM when the program starts. It instantiates a new Hello frame and causes it to be displayed by calling the setVisible(boolean) method inherited from the Component superclass with the boolean parameter true. Once the frame is displayed, exiting the main method does not cause the program to terminate because the AWT event dispatching thread remains active until all of the Swing top-level windows have been disposed.

Generics

In 2004, generics
were added to the Java language, as part of J2SE 5.0. Prior to the
introduction of generics, each variable declaration had to be of a
specific type. For container classes, for example, this is a problem
because there is no easy way to create a container that accepts only
specific types of objects. Either the container operates on all subtypes
of a class or interface, usually Object, or a different
container class has to be created for each contained class. Generics
allow compile-time type checking without having to create a large number
of container classes, each containing almost identical code.

[edit] Criticism

A number of criticisms have been leveled at Java programming language
for various design choices in the language and platform. Such
criticisms include the implementation of generics, the handling of
unsigned numbers, the implementation of floating-point arithmetic, and
security vulnerabilities.

Class libraries

Java Platform and Class libraries diagram

[edit] Documentation

Javadoc is a comprehensive documentation system, created by Sun Microsystems,
used by many Java developers. It provides developers with an organized
system for documenting their code. Javadoc comments have an extra
asterisk at the beginning, i.e. the tags are /** and */, whereas the
normal multi-line comment tags comments in Java and C are set off with /* and */.

Editions

Java editions

Java Card
Micro Edition (ME)
Standard Edition (SE)
Enterprise Edition (EE)
PersonalJava (discontinued)

Sun has defined and supports four editions of Java targeting different application environments and segmented many of its APIs so that they belong to one of the platforms. The platforms are:

The classes in the Java APIs are organized into separate groups called packages. Each package contains a set of related interfaces, classes and exceptions. Refer to the separate platforms for a description of the packages available.

The set of APIs is controlled by Sun Microsystems in cooperation with others through the Java Community Process
program. Companies or individuals participating in this process can
influence the design and development of the APIs. This process has been a
subject of controversy.

Sun also provided an edition called PersonalJava that has been superseded by later, standards-based Java ME configuration-profile pairings.

See also



Notes

  1. ^ Java 5.0 added several new language features (the enhanced for loop, autoboxing, varargs and annotations), after they were introduced in the similar (and competing) C# language [1][2]
  2. ^ "About Microsoft's "Delegates"". http://java.sun.com/docs/white/delegates.html. Retrieved 2010-01-11. "We looked very carefully at Delphi Object Pascal
    and built a working prototype of bound method references in order to
    understand their interaction with the Java programming language and its
    APIs. [...] Our conclusion was that bound method references are
    unnecessary and detrimental to the language. This decision was made in
    consultation with Borland International, who had previous experience
    with bound method references in Delphi Object Pascal."
  3. ^ Gosling and McGilton (May 1996). "The Java Language Environment". http://java.sun.com/docs/white/langenv/Intro.doc1.html#943.
  4. ^ J. Gosling, B. Joy, G. Steele, G. Brachda. "The Java Language Specification, 2nd Edition". http://java.sun.com/docs/books/jls/second_edition/html/intro.doc.html#237601.
  5. ^ "The A-Z of Programming Languages: Modula-3". Computerworld.com.au. http://www.computerworld.com.au/index.php/id;1422447371;pp;3;fp;4194304;fpid;1. Retrieved 2010-06-09.
  6. ^ Patrick Naughton cites Objective-C
    as a strong influence on the design of the Java programming language,
    stating that notable direct derivatives include Java interfaces (derived
    from Objective-C's protocol) and primitive wrapper classes. [3]
  7. ^ TechMetrix Research (1999). "History of Java". Java Application Servers Report. http://www.fscript.org/prof/javapassport.pdf. "The project went ahead under the name "green" and the language was based on an old model of UCSD Pascal, which makes it possible to generate interpretive code"
  8. ^ "A Conversation with James Gosling – ACM Queue". Queue.acm.org. 2004-08-31. http://queue.acm.org/detail.cfm?id=1017013. Retrieved 2010-06-09.
  9. ^ "Programming Language Popularity". 2009. http://www.langpop.com/. Retrieved 2009-01-16.
  10. ^ "TIOBE Programming Community Index". 2009. http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html. Retrieved 2009-05-06.
  11. ^ Byous, Jon (ca. 1998). "Java technology: The early years". Sun Developer Network. Sun Microsystems. Archived from the original on April 20, 2005. http://web.archive.org/web/20050420081440/http://java.sun.com/features/1998/05/birthday.html. Retrieved 2005-04-22.
  12. ^ "The History of Java Technology". Sun Developer Network. ca. 1995. http://www.java.com/en/javahistory/. Retrieved 2010-04-30.
  13. ^ "Jonathan Schwartz's Blog: Different Isn't Always Better, But Better's Always Different". Blogs.sun.com. http://blogs.sun.com/jonathan/entry/better_is_always_different. Retrieved 2010-06-09.
  14. ^ Heinz Kabutz, Once Upon an Oak. Artima. Retrieved April 29, 2007.
  15. ^ Java Study Group; Why Java Was – Not – Standardized Twice; What is ECMA—and why Microsoft cares
  16. ^ "Java Community Process website". Jcp.org. 2010-05-24. http://www.jcp.org/en/home/index. Retrieved 2010-06-09.
  17. ^ "JAVAONE: Sun – The bulk of Java is open sourced". open.itworld.com. http://open.itworld.com/4915/070508opsjava/page_1.html. Retrieved 2010-06-09.
  18. ^ "Sun’s Evolving Role as Java Evangelist". O'Reilly Media. http://onjava.com/pub/a/onjava/2002/04/17/evangelism.html.
  19. ^ "Oracle and Java". oracle.com. Oracle Corporation. http://www.oracle.com/us/technologies/java/index.html. Retrieved 2010-08-23.
    "Oracle has been a leading and substantive supporter of Java since its
    emergence in 1995 and takes on the new role as steward of Java
    technology with a relentless commitment to fostering a community of
    participation and transparency."
  20. ^ "1.2 Design Goals of the JavaTM Programming Language". Java.sun.com. 1999-01-01. http://java.sun.com/docs/white/langenv/Intro.doc2.html. Retrieved 2010-06-09.
  21. ^ Andy Patrizio (2006). "Sun Embraces Linux With New Java License". Internet News. Web Media Brands. http://www.internetnews.com/dev-news/article.php/3606656. Retrieved 2009-09-29.
  22. ^ "Java for Mac OS X". Apple Developer Connection. Apple. http://developer.apple.com/java/. Retrieved 2009-09-29.
  23. ^ "Microsoft Java Virtual Machine Support". Microsoft.com. http://www.microsoft.com/mscorp/java/default.mspx. Retrieved 2010-06-09.
  24. ^ "Java SE – Licensees". Java.sun.com. 2008-08-12. http://java.sun.com/javase/licensees.jsp. Retrieved 2010-06-09.
  25. ^ James Niccolai (January 23, 2001). "Sun, Microsoft settle Java lawsuit". JavaWorld (IDG). http://www.javaworld.com/javaworld/jw-01-2001/jw-0124-iw-mssuncourt.html. Retrieved 2008-07-09.
  26. ^ Jelovic, Dejan. "Why Java will always be slower than C++". http://www.jelovic.com/articles/why_java_is_slow.htm. Retrieved 2008-02-15.
  27. ^ "Symantec's Just-In-Time Java Compiler To Be Integrated Into Sun JDK 1.1". http://www.symantec.com/about/news/release/article.jsp?prid=19970407_03.
  28. ^ http://shootout.alioth.debian.org/u32q/which-programming-languages-are-fastest.php?gcc=on&gpp=on&javasteady=on&java=on&csharp=on&javaxint=on&python3=on&python=on&jruby=on&php=on&perl=on&calc=chart
  29. ^ "NullPointerException". Java.sun.com. http://java.sun.com/j2se/1.4.2/docs/api/java/lang/NullPointerException.html. Retrieved 2010-06-09.
  30. ^ "Exceptions in Java". Artima.com. http://www.artima.com/designtechniques/exceptions.html. Retrieved 2010-08-10.
  31. ^ http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html
  32. ^ "Using applet, object and embed Tags". oracle.com. http://download.oracle.com/javase/1.5.0/docs/guide/plugin/developer_guide/using_tags.html. Retrieved 2010-10-14.
  33. ^ "Deploying Applets in a Mixed-Browser Environment". oracle.com. http://download.oracle.com/javase/1.5.0/docs/guide/plugin/developer_guide/using_tags.html#mixed. Retrieved 2010-10-14.

References

[edit] External links

Categories: Class-based programming languages | Concurrent programming languages | C programming language family | Cross-platform software | Java platform | Java programming language | Java specification requests | JVM programming languages | Object-oriented programming languages | Programming languages created in 1995 | Sun Microsystems