public class Hello
{
public static void main (String[ ] arges)
{
int x = 7;
Hello foo = new Hello();
foo.go(x);
}
}
class Goo
{
void go(int z)
{
z = 0;
System.out.print(z);
}
}
如题,求大神指点下
...全文
237打赏收藏
JAVA新手提问,运行错误:找不到符号 布拉布拉
public class Hello { public static void main (String[ ] arges) { int x = 7; Hello foo = new Hello(); foo.go(x); } } class Goo { void go(int z) { z = 0; System.out.print(z); } } 如题,求大神指点下