如果将 Java Long 转换为另一个基数,如何从转换为的 String 中获取它?

发布于 2024-12-05 18:30:00 字数 175 浏览 1 评论 0原文

将数字转换为不同的基数后:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

玩世 2024-12-12 18:30:00
long parseLong(String s, int radix)
                 throws NumberFormatException

http://download.oracle.com/javase/6 /docs/api/java/lang/Long.html

Long thirteenAsBase10;
try
{
    thirteenAsBase10 = Long.parseLong(thirteenAsBase36, 36);
}
catch ( NumberFormatException e )
{
    System.out.println("Oops");
}

您的第一个想法应该始终是:阅读 JavaDocs

long parseLong(String s, int radix)
                 throws NumberFormatException

http://download.oracle.com/javase/6/docs/api/java/lang/Long.html

Long thirteenAsBase10;
try
{
    thirteenAsBase10 = Long.parseLong(thirteenAsBase36, 36);
}
catch ( NumberFormatException e )
{
    System.out.println("Oops");
}

Your first thought should always be: read the JavaDocs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文