大神帮帮忙求解- 31.给定java代码,如下:
- public class Test{
- static int i=0;
- public int aMethod( ){
- i++;
- return i;
- }
- public static void main(String [] args){
- Test test = new Test( );
- test.aMethod( );
- System.out.println(test.aMethod( ));
- }
- }编译运行后,输出结果是( )。
- A. 0
- B. 1
- C. 2
- D. 3
复制代码
|
|