nancy nant

Greenhorn
+ Follow
since Nov 08, 2008
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by nancy nant

great links guys.

I am a girl

I am also looking for a good book for scdjws 5. I am studying from a few books, but i want one that contains most of objectives. This book can be that one (http://mhprofessional.com/product.php?isbn=0072259523&cat=112&promocode= ) but this is for 310-220 (scdjws 1.4) and will be published at December 2009
Hello,
I am preparing SCDJWS 5 and I am new in web services. I am studying from these location:
http://scdjws-beta.blogspot.com/ and http://www.javapassion.com/webservices/index.html (great ws course)

I would appreciate if someone can suggest any other study material for scdjws 5.
I also tried Devaka Mocks and my results were about 50%. I noticed that questions from Devaka Mocks are harder then other Mock tests that I've tried, but I think that Devaka Mocks are really good for preparation.
Hello,
I'm preparing for SCJP 5 and have doubt about overloading methods.
I tried to compile this code:

public class Main {
public static void test(int... a){System.out.println("int array");}
public static void test(Number... a){System.out.println("Number");}

public static void main(String[] args) {
test(new byte[]{2,3});
}
}


and i got compile time error: cannot find symbol: method test(byte[])

I expected that the result would be:int array. Can someone explain me why is this happened.

Nancy