package com.bjpowernode.javase1.integer1;
/*
关于Integer类的构造方法,有两个:
Integer(int)
Integer(String)
*/
public class IntegerTest03 {
public static void main(String[] args) {
Integer x = new Integer(123);
// 将数字100转换成Integer包装类型(int --> Integer)
/*将基本数据类型转化为引用数据类型,装箱,构造方法*/
Integer a1 = new Integer(100);
System.out.println(a1);
// 将String类型的数字,转换成Integer包装类型。(String --> Integer)
Integer a2 = new Integer("123");
System.out.println(a2);
// double -->Double
Double a3 = new Double(3.14159);
System.out.println(a3);
// String --> Double
/*Java中的字符串String属于引用数据类型。因为String是一个类*/
Double a4 = new Double("123.123");
System.out.println(a4);
}
}
输出:
100
123
3.14159
123.123
进程已结束,退出代码 0
相关文章
- 08-061.(1)编写一个接口ShapePara,要求: 接口中的方法: int getArea():获得图形的面积。int getCircumference():获得图形的周长 (2)编写一个圆类Circle,要求:圆类Circle实现接口ShapePara。 该类包含有成员变量: radius:public 修饰的double类型radius,表示圆的半径。 x:private修饰的double型变量
- 08-06WPF编程,通过Double Animation动态缩放控件的一种方法。
- 08-06WPF编程,通过Double Animation动态旋转控件的一种方法。
- 08-06double在输出为字符串的几种方法效率测试
- 08-06102-构造函数的原理以及使用方法-【视频讲解】
- 08-06一个简单方法:构造xml的document,并将其转换为string
- 08-06通过反射获取class文件中的构造方法,运行构造方法
- 08-06前端第27次总结-节点、快捷尺寸、获取样式的方法、键盘事件、面向对象、原型、原型链、安全类、内置的构造函、继承、BOM、Git、touch事件、动画、zepto、touch
- 08-06Python进阶-XVIV 类的内置方法:__str__ 、__repr__、析构函数(__del__)、双下的call,eq,new,hash 以及item相关的三个方法
- 08-06eclipse中自动生成构造函数的两种方法