Submitted by heartin on Sat, 09/15/2012 - 13:00
Here we will discuss the details of downloading, installing and configuring java for first time. You will first find the steps in writing followed by complete screenshots of these steps as a slideshow.
Submitted by heartin on Fri, 09/14/2012 - 21:38
Read about JDK, JRE, JVM, classes, objects and methods in brief and write, compile and execute your first java program. Discusses why Java is called as a compiled interpreted language and also why java is platform independent.
Submitted by heartin on Thu, 09/13/2012 - 20:03
Both Enumeration and Iterator are interfaces in Java for getting successive elements. Enumeration is older while iterator was introduced later with some improvements. Iterator has taken the place of Enumeration in the Java collections framework. ListIterator is a sub-interface of Iterator and allows the programmer to traverse the list in either direction, modify the list during iteration, and obtain the iterator's current position in the list.
Submitted by heartin on Wed, 09/12/2012 - 03:43
Object-Oriented Programming (OOP) uses "objects" to model realworld objects. Object-Oriented Programming (OOP) consist of some important concepts namely Encapsulation, Polymorphism, Inheritance and Abstraction. These features are generally referred to as the OOPS concepts.
Submitted by heartin on Thu, 09/06/2012 - 05:07
Enums in java are classes and each constant in an enum is a public final static field that represents an instance of its enum class. Unlike enums in java which are classes, traditional enumerated types ( used in java before java 5 and in some other languages) were a set of int/String constants.
Pages