[求助]如何调用。。。。
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());
----------------解决方案--------------------------------------------------------
十分感谢您的回答。。。。。
----------------解决方案--------------------------------------------------------