Help coderanch get a
new server
by contributing to the fundraiser

Hades Pan

Ranch Hand
+ Follow
since Nov 25, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Hades Pan

Have you some to try it?
Thank you
22 years ago
HI Mark thanks for your replay
And I have quession on how to sign up for the assignment? and for whom?
Regard~!
And how could I star? and are there have some resource for SCJD?
Thanks~!
Which way can be used? thanks.
22 years ago
JSP
Are you a Chinese people?
22 years ago
I have passed SCJP just now, and study SCWCD continue, and where can I find some resource of SCWCD?
THANKS
I want to take the EXAM of SCWCD (SUN CERTIFIED WEB COMPONENT DEVELOPMENT) SL-314
Where can find the resource about it?
Thank you!
And thank FEI NG too, for you answered quession of me last few days!!
I pass it in 84% and it isn't high score in my hometown.
22 years ago
Thanks all people who reply my quession recently. you are hero in JAVA world! Thank you again and again!!
22 years ago
Is it right?
public static final int hai(){}
The int value representing the final modifier.
Thank you Jose Botella very very much!! You are a hero in JAVA world!
Thank you very one!
Is this the same result with cord 2 above?
class Hppp extends Thread {
final static StringBuffer sb1 = new StringBuffer();
final static StringBuffer sb2 = new StringBuffer();
public static void main(String args[]) {
new Thread() {
public void run() {
synchronized(sb1) {
sb1.append("A");
sb2.append("B");
System.out.println(sb1);
System.out.println(sb2);
}
}
}.start();
new Thread() {
public void run() {
synchronized(sb2) {
sb1.append("C");
sb2.append("D");
System.out.println(sb2);
System.out.println(sb1);
}
}
}.start();
}
}
Or will Output non-deterministic because of the chance of dadlock?