public class Help
{
    public static void main (String[] args)
    {
        if (index = 1)
        {
            String greeting = "hello";
        }
        else
        {
            String greeting = "goodbye";
        }
    }

    callAMethod(greeting);
}

当我在 if 语句中定义字符串时,出现“找不到符号”错误。我怎样才能解决这个问题,并且仍然能够根据上述条件创建一个字符串?

最佳答案

怎么样

public static void main (String[] args){
    String greeting;
    if( index == 1){
       greeting = "hello";
    }else{
       greeting = "goodbye";
    }
 }

 callAMethod(greeting);
}

关于variables - 如何使用 'if' 语句中定义的变量?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6253874/

10-10 14:11