flora li

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

Recent posts by flora li

at the end of file, value = -1.
-1 & oxff will be a positive value.
in this case value != value & ox11. the result will be false. so D is correct.
is Swing,html, javadoc included? thankyou!
hi, I just asked my compiler professor, his answer is following:
when we do i=i++, the process is:
temp = i; // for get the value from i before i is increased
i = i+1; // increase i
i = temp; //assignment
Hope that will help.