**//方法**
class Test2{
public void method2(){
System.out.println("1");
}
}
class test{
public void method0(){
System.out.println("2");
}
public static void method1(){
System.out.println("3");
}
public static void main(String args[]){
new test().method0(); //调用静态方法,必须new一个对象才能调用
method1(); //静态方法调用可以直接调用
new Test2().method2();
}
}
//变量,静态成员变量和静态方法一样可以直接进行调用
public class A
{
// b是不是静态变量,称为实例变量,只能通过实例使用。
public int b;
}
// 在类B中使用类A中的变量
public class B
{
public void Test1()
{
//存取A中的实例变量x,必须先实例化A,然后才能使用
A a = new A();
a.b = 70;
Console.WriteLine(a.b);
}
}