Java Guru
Hello Friends,here you will get java interviews question & some information about java.....
Java is a programming language originally developed by James Gosling at Sun Microsystems (which has since merged into Oracle Corporation) and released in 1995 as a core component of Sun Microsystems' Java platform. The language derives much of its syntax from C and C++ but has a simpler object model and fewer low-level facilities. Java applications are typically compiled to bytecode (class file) t
16/10/2015
Top 30 Eclipse Keyboard Shortcuts for Java Programmer 30 Eclipse keyboard shortcut for Java programmers which can improve speed and productivity. Eclipse shortcuts for finding classes, methods, debugging, navigation, javadoc and coding.
http://sourceforge.net/projects/eclipsetutorial/files/1.%20Total%20Beginners/Version%201.0/
Eclipse and Java Video Tutorials - Browse /1. Total Beginners/Version 1.0 at SourceForge.net Free video screencam tutorials for Eclipse and Java. Includes "Eclipse and Java for Total Beginners", "Using the Eclipse Workbench", "Introducing …
http://help.eclipse.org/juno/index.jsp?topic=%2Forg.eclipse.jdt.doc.user%2FgettingStarted%2Fqs-3.htm
20/06/2012
http://www.amazon.com/exec/obidos/ASIN/007163360X/jr_bunk-20
Java Programming (Oracle Press) Develop, Compile, and Debug High-Performance Java Applications Take your Java skills to the next level using the expert programming techniques contained in this Oracle Press guide. Featuring real-world code samples and detailed instructions, Java Programming demonstrates how to...
import java.util.*;
class Dog
{
public Dog(String n){name=n;}
public String name;
public boolean equals(Object o)
{
if((o instanceof Dog) &&(((Dog)o).name==name)){
return true;}
else{ return false;
}
}
public int hashCode(){return name.length();}
}
class Cat
{
}
enum Pets{DOG,CAT,HORSE}
class MapTest
{
public static void main(String[] args)
{
Mapm=new HashMap();
m.put("k1",new Dog("aiko"));
m.put("k2",Pets.DOG);
m.put(Pets.CAT,"CAT KEY");
Dog d1=new Dog("clover");
m.put(d1,"Dog key");
m.put(new Cat(),"Cat Key");
System.out.println(m.get("k1"));
System.out.println(m.get("k2"));
Pets p=Pets.CAT;
System.out.println(m.get(p));
System.out.println(m.get(d1));
System.out.println(m.get(new Cat()));
System.out.println(m.size());
d1.name="magnolia";
System.out.println(m.get(d1));
d1.name="clover";
System.out.println(m.get(new Dog("clover")));
d1.name="arthur";
System.out.println(m.get(new Dog("clover")));
}
}
20/06/2012
Java « Categories « All good tutorials in one place Learn JAVA programming language
http://stackoverflow.com/questions/1845731/inner-class-in-interface-vs-in-class
java - Inner class in interface vs in class - Stack Overflow further info: I am able to instantiate Items class in both cases A and B in another class that does not implement interface AT ALL.
http://www.java-questions.com/InnerClass_interview_questions.html
InnerClass Java interview questions | Java/J2EE interview questions Java/J2EE questions ,Inner class interview and java interview questions and articles on all topics in java and stuff related to Javaworld.
http://stackoverflow.com/questions/3835525/simple-java-exception-question
Simple Java Exception Question - Stack Overflow Hey, This is just a simple exercise from class that I decided to have a go at putting an exception in. According to the book input for this problem is supposed to be in the following format: APRIL 19, 2009 What I'm trying to do with my exception is make sure the user(whoever grades it) follows those...
Click here to claim your Sponsored Listing.
Category
Website
Address
Pune