问答详情
源自:7-1 什么是 Java 中的封装

如何将输入一个的变量设为类变量呢

如static int x= object .nextInt()会出错

提问者:pearandpeach 2016-10-16 17:18

个回答

  • 逮猫的鱼
    2016-10-16 17:47:57

    public class outer {
     static int test;
        static{
         test = new Scanner(System.in).nextInt();
         System.out.println(test);
        }
        
     public static void main(String[] args) {
      // TODO Auto-generated method stub
            System.out.println(test);
     }
    }