当前位置: 代码迷 >> Java相关 >> [求助]如何调用。。。。
  详细解决方案

[求助]如何调用。。。。

热度:84   发布时间:2007-04-08 08:30:33.0
[求助]如何调用。。。。

class Myclass
{
private int a;
static void setA(int x)
{
a=x;
}
static int getA()
{
return a;
}
void display()
{
System.out.println(a);
}

}
public class Test
{

public static void main(String[] args)
{
Myclass my=new Myclass();

Test.setA(50);
Test.getA();
//my.getA(5)
System.out.println(a);
my.display();
}
}

/*怎么才能实现不直接通过my.display()方法实现a的输出。。。还有没有别的办法啊!我把要用的方法都设置
*为静态了。。
*
*/


----------------解决方案--------------------------------------------------------
System.out.println(Test.getA());
----------------解决方案--------------------------------------------------------
十分感谢您的回答。。。。。
----------------解决方案--------------------------------------------------------
  相关解决方案