long.tostring()

来源:互联网 发布:java引用xml文件 编辑:程序博客网 时间:2024/05/16 04:45
public static void main(String[] args) {Long s = 1111111111111111l;System.out.println(Long.toString(s, Character.MAX_RADIX));System.out.println(Long.toString(s));}


输出

axutebils7
1111111111111111

原创粉丝点击