package com.test;
public class abc {
int a=1;
static int b=2;
public static void test(){
System.out.println("输出"+b);
System.out.println();
}
public static void main(String[] args) {
abc Abc=new abc();
System.out.println("输出"+Abc.a);
test();
}
}
大雄的哆啦A梦
相关分类