请原谅我可能是一个非常明显的问题,但我真的花了一整天的时间来处理一个项目,现在我遇到了一个非常简单的问题,但我似乎无法解决这个问题。所以我有这个非常简单的方法
Platform
我相信它会返回一个字符串,现在我的问题是如何获得该返回字符串并将其打印在另一个方法中。换句话说,我想打印此方法返回的内容。非常感谢你的时间!
编辑:我尝试使用以下两个选项调用该方法,但我遇到以下错误:
public String method(final Node<Tag> child) {
return child.getData().getAttributeValue();
}
通过简单地调用它来发生:
BrowserGui.java:185: error: cannot find symbol
String foo = method(childNode);
^
symbol: variable childNode
答案 0 :(得分:1)
只需在其上调用 sysout :
System.out.println(child.getData().getAttributeValue());
它相当于
String value = child.getData().getAttributeValue();
System.out.println(value);
答案 1 :(得分:1)
将返回值分配给变量并打印
String foo = method(childNode);
System.out.println(foo);
或直接使用System.out.println(method(childNode));