package com.faintbear;
public class test
{
int i = 0;
public test()
{
i=i ++;
System.out.println(i);
}
public static void main(String argsp[]) {
new test();
}
}
結果是0,為什么呢 ?
回復人: blackhost(劍心) ( ![]() |
2005-3-27 16:42:06 | 得分: 0 | ||
|
package com.faintbear;
public class test
{
int i = 0;
public test()
{
i=i ++;
System.out.println(i);
}
public static void main(String argsp[]) {
new test();
}
}
結果是0,為什么呢 ?
回復人: blackhost(劍心) ( ![]() |
2005-3-27 16:42:06 | 得分: 0 | ||
|