0

method同じ内の別の変数を呼び出す方法はclass?

public void example(){    
    String x='name';
}

public void take(){
    /*how to call x variable*/
}
4

4 に答える 4

6

クラスのインスタンス変数にします。

public class MyClass
{
    String x;

    public void example(){ x = "name"; } // note the double quotes
    public void take(){ System.out.println( x ); }
}
于 2013-11-12T00:01:11.610 に答える
0
public class Test
{

static String x;
public static void method1
{
x="name";
}

public static void method2
{

System.out.println(+x);

}

}
于 2015-08-10T02:25:00.540 に答える