-1
txtFar.setText(result.getProperty(0).toString());

一般来说
,谁能告诉我上面的行在说什么。
离开对象 txtFar & 结果。

任何的想法?

感谢您宝贵的时间!

4

2 回答 2

1

它正在获取result 的第 0 个属性,并通过将属性转换为String将其设置为txtFar

你期待别的东西吗?

于 2012-06-05T10:54:10.343 回答
1

此行的 OP 可以解释为:

txtFar variable which is a text field is set to 0th property of result by converting into String. 

基本上,这个文本字段被分配了一个字符串值。

于 2012-06-05T11:02:40.740 回答