当前位置: 代码迷 >> J2SE >> cannot be resolved to a variable
  详细解决方案

cannot be resolved to a variable

热度:464   发布时间:2016-04-23 20:42:09.0
求助cannot be resolved to a variable
本帖最后由 int_java_se 于 2014-05-25 18:49:33 编辑
public class Encapsulation
{
public int add(int a , int b)
{
return a + b;
}
public int subtract(int a , int b)
{
return a - b;
}
public int multiplication(int a , int b)
{
return a * b;
}
public int division(int a ,int b)
{
return a / b;
}
public void sop() //这里是不需要返回的,变量名一定要与下面的变量名大小写统一。
{
System.out.println("hello word");
}
    public void  returnTest(int x)
    {
        for(int f = 1 ; f < 10 ; f++)
        {
            if(9 == f)
            {
                System.out.println(x+"="+f);
            }
        }
        System.out.println(x);
    }
public static void main(String[] args)
{
Encapsulation test = new Encapsulation();
int a = 8;
int b = 4;
int i = test.add(a,b);//方法调用需要通过对象来完成,方法调用的形式是:对象变量.方法名([参数1,参数2,参数3....);
int i1 = test.subtract(a,b);
int i2 = test.multiplication(a,b);
int i3 = test.division(a,b);
System.out.println(i);
System.out.println(i1);
System.out.println(i2);
System.out.println(i3);
test.sop();
testreturnTest(x); //报错了 x cannot be resolved to a variable 咋回事呢

}
}
------解决方案--------------------
testreturnTest(x); 

这是什么?
1、x没定义。
2、testreturnTest是什么玩意。
------解决方案--------------------
你没有定义x这个变量当然不行,前面定义的  public void  returnTest(int x){} 这里的x只有在reurnTest()这个函数里有用
  相关解决方案