> symbol in Java?
This question already has an answer here:
It's two operations. The postfix --
( a = a - 1
but effective on the next line) and a greater than. It's equivalent to something like
while (a > 0) {
a = a - 1;
链接地址: http://www.djcxy.com/p/1982.html
上一篇: >“是否意味着在C?
下一篇: > Java中的符号?