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.
我搜索但在网上找不到。
是否有一个函数可以将任何整数表示为其字符串文字表示?
例子 :
Integer i1 = new Integer(4); Integer i2 = new Integer(30); i1.callSomeFunction(); i2.callSomeFunction(); Output : "Four" "Thirty"
如果您知道另一个不在 Integer 类中的函数,那也没关系。
没有标准的方法可以做到这一点,但看看这个。在英语语言转换器中有一个数字到单词的示例。