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

数据封装类有什么用,比普通数据类型有什么优势?

时间:2018-09-23 22:39:48      阅读:327      评论:0      收藏:0      [点我收藏+]

标签:title   tle   style   www.   16进制   test   http   数学运算   system   

2.数据封装类
下面列出了一些数据封装类。(视频下载) (全部书籍)引入数据封装类有什么用呢?既然它们是类,就有方法,就可以被我们利用。比如,Integer中toHexString方法,可以轻松吧十进制转换成16进制数,马克-to-win:而你int简单类型有这功能吗?

 

Boolean boolean
Character char
Double double
Float float
Integer int
Long long
Short short
Byte byte
Void void

3.Math 类
用来完成一些常用的数学运算。

例2.2.1---本章源码

public class Test {
    public static void main(String[] args) {
        Integer in = new Integer(5);
        Integer in1 = new Integer("67");
        Boolean b = new Boolean(true);
        System.out.println("Mark 16进制是 "+Integer.toHexString(17));
        System.out.println(in.intValue());
        System.out.println(in1.intValue());
        System.out.println(b.booleanValue());

。。。。。。。。。。。。。。。。。。。。。
详情请见:http://www.mark-to-win.com/index.html?content=JavaBeginner/javaUrl.html&chapter=JavaBeginner/JavaBeginner3_web.html#PointDataClass

数据封装类有什么用,比普通数据类型有什么优势?

标签:title   tle   style   www.   16进制   test   http   数学运算   system   

原文地址:https://www.cnblogs.com/mark-to-win/p/9693555.html

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