码迷,mamicode.com
首页 > 其他好文 > 详细

转换类型 totypeString

时间:2018-11-12 20:26:04      阅读:276      评论:0      收藏:0      [点我收藏+]

标签:import   case   int   too   after   div   leading   types   lower   

type.totypeString(variable)  其中front type is want to turn    after type是你要转换成的类型  

//: dsfsf/Literals.java
package dsfsf;
import static net.util.Print.*;//I write method

public class Literals{
    public static void main(String[] args){
        int i1 = 0x2f;//hexadecimal (lowercase)
        print("i1 = " + Integer.toBinaryString(i1));//turn binary
        long i2 = 0x41;
        print("i2 = " + Long.toString(i2));//turn character
        int i3 = 0177; //Octal (leading zero)
        print("i3 = " + Integer.toHexString(i3));//turn hex
        char c = 0xffff;//max char hex value
        print("c: " + Integer.toOctalString(c));//turn octal 
    }
}/* output:
i1 = 101111
i2 = 65
i3 = 7f
c: 177777
*///~

 

转换类型 totypeString

标签:import   case   int   too   after   div   leading   types   lower   

原文地址:https://www.cnblogs.com/jiangfeilong/p/9948750.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!