2015
Abstract And Final Class
Java Notes For Java Beginner
Abstract classA partially implemented and partially unimplemented class, is called as abstract class. Definition : A class which have at least one abstract method,...
Super class reference & sub class object
Java Notes For Java Beginner
We can create the reference of super class and assign the sub class object to it. The execution behavior of this reference variable is depends upon the super class....
Constructor [Types][Execution][Examples]
Java Notes For Java Beginner
A special type of method, which is used to construct memory for class elements, is called as constructor. Example : class A { A() { } } It's specialties are...
public static void main(String args[])
Java Notes For Java Beginner
Access specifiersJava have four access specifiers. public : The keyword which is used a access specifier whose data can be accessible in same class, other class, other...
Wrapper classes
Java Notes For Java Beginner
The classes which are used to convert the string value (Actually numeric) into it's respective data type, are called as wrapper classes. Classes Integer Float Character Long Short Byte Boolean Double And...
String [Manipulating methods][StringBuffer Class methods]
Java Notes For Java Beginner
String : A built in class, whose object is used to store the set of characters, is called as string. Example : String S1=new String("Hello"); or String S1="Hello"; String...
Static Data of class
Java Notes For Java Beginner
Static keyword is used to load the class data into primary memory first to the object. As it is directly loaded into memory, it can be accessible directly. Note :...
About Java [Evolution/Goals/Versions/Features]
Java Notes For Java Beginner
Structure oriented language 'C' when implemented with new object oriented concepts, it becomes 'C++'. These new language doesn't support/follow the concepts so C++...
Page 1 of 3123Next »Last