質問

What is the preferred way to convert an Integer into a String in Xtend? Is there a better way than this?

var int port = 12345
var String portStr = "" + port
役に立ちましたか?

解決

var portString = port.toString
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top