-2
我想使用printf爲字符串賦值。指定字符串w /格式化程序
我想要做這樣的事情:
String b = printf("Base Price: $%,.2f\n", basePrice);
這可能嗎?
(與this one非常類似的問題,但它是在C中)。
我想使用printf爲字符串賦值。指定字符串w /格式化程序
我想要做這樣的事情:
String b = printf("Base Price: $%,.2f\n", basePrice);
這可能嗎?
(與this one非常類似的問題,但它是在C中)。
您可以使用String::format
:
String b = String.format("Base Price: $%,.2f\n", basePrice);