java 一段代码没看明白 希望详细解释一下 谢谢

publicclassIntegerDemo{publicIntegerDemo(){}publicstaticvoidmain(String[]args){Intege... public class IntegerDemo{
public IntegerDemo(){ }
public static void main(String[] args){
Integer[] array = {new Integer(20),new Integer(40), new Integer("110")};
for(int i=0; i<array.length; i++){
System.out.print(Integer.toBinaryString(array[i].intValue())+"\t");
System.out.print(Integer.toHexString(array[i].intValue())+"\t");
System.out.print(Integer.toOctalString(array[i].intValue())+"\n");
}
}
}
展开
 我来答
捏捏啾啾
2010-04-21 · TA获得超过331个赞
知道答主
回答量:59
采纳率:0%
帮助的人:72.6万
展开全部
public class IntegerDemo{ //定义一个类名字叫IntegerDemo
public IntegerDemo(){ }//类IntegerDemo的构造函数
public static void main(String[] args){//主函数程序执行的入口
Integer[] array = {new Integer(20),new Integer(40), new Integer("110")};//定义Integer类型的数组array,第一项为20,第二项为40,第三项为110
for(int i=0; i<array.length; i++){//for循环语句遍历数组array
System.out.print(Integer.toBinaryString(array[i].intValue())+"\t");//输出第一项array[0]的内容20
System.out.print(Integer.toHexString(array[i].intValue())+"\t");//输出第二项array[1]的内容40
System.out.print(Integer.toOctalString(array[i].intValue())+"\n");//输出第三项array[2]的内容110
}
}
}
忘却的星辰
2010-04-21 · TA获得超过781个赞
知道答主
回答量:28
采纳率:0%
帮助的人:0
展开全部
哥们,你哪里看不明白?所有都不明白?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
t6116784
2010-04-21 · TA获得超过148个赞
知道答主
回答量:482
采纳率:0%
帮助的人:224万
展开全部
无聊输出了一下,第一个方法,为转换2进制,第二个方法为转换16进制,第三个方法为转换8进制,再好的记性没帮助文档管用!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式