如何使用方法的返回值初始化字符串?

时间:2015-08-05 14:00:27

标签: java string

我想在字符串中存储方法返回值,如下面的代码所示:

String abc="xyz.method()";

现在在字符串'abc the value xyz.method()is being stored, but I want to store the returned value of xyz.method()in the string abc`中。我怎样才能做到这一点?

2 个答案:

答案 0 :(得分:1)

调用方法:

String abc = xyz.method();

答案 1 :(得分:0)

您不需要报价。只要您的方法返回一个字符串,您就可以做到这一点:

class XYZ
{
    public static String method(){
        //do stuff
        return string;
    }

    public static void main(String[]args){
        String abc = XYZ.method();
    }
}

如果你的方法没有返回一个字符串,你总是可以在那里设置一个变量等于abc或者使用toString()方法。