Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Xtend 中将整数转换为字符串的首选方法是什么?还有比这更好的方法吗?
var int port = 12345 var String portStr = "" + port
var portString = port.toString