如果将 Java Long 转换为另一个基数,如何从转换为的 String 中获取它?
将数字转换为不同的基数后:
String thirteenAsBase36 = Long.toString(13, 36);
如何将字符串转换回正常的 10 基数?
Long thirteenAsBase10 = ?
After you convert a number to a different base:
String thirteenAsBase36 = Long.toString(13, 36);
How do you convert the String back to a normal base 10 number?
Long thirteenAsBase10 = ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://download.oracle.com/javase/6 /docs/api/java/lang/Long.html
您的第一个想法应该始终是:阅读 JavaDocs。
http://download.oracle.com/javase/6/docs/api/java/lang/Long.html
Your first thought should always be: read the JavaDocs.