test011.java


public class test011
{
int x = 45;
static int y = 90;

public static void main(String[] args)
{
test011 temp = new test011();
System.out.println("x为类的实例变量:" + temp.x);

System.out.println("y为类的静态变量:" + test011.y);
}
}