JAVA基础10-包装类

    Boolean b1=new Boolean(true);

    System.out.println("b1" +b1);

    //b1true

    Boolean b2=new Boolean("true" );

    System.out.println("b2" +b2);

    //b2true 这里字符串也可转

    Boolean b3=new Boolean("true123");

    System.out.println("b3"+b3);

    //b3false 只有字符串"true"转出来时true,其他都为false

   

    Order o1=new Order();

    System.out.println(o1.isOK1);

    //null

    System.out.println(o1.isOk2);

    //false

}

}

class Order{

Boolean isOK1;// 类Boolean未初始化null

boolean isOk2;// 基本数据类型未初始化false

}




[]( )包装类转为基本数据类型

------------------------------------------------------------------------------



1.  调用包装类的XXXValue()

2.  示例:



public class BasicTest {

public static void main(String[] args) {

    Integer integer1=new Integer(10);

    int i1=integer1.intValue();

    System.out.println(i1 + 1);

    //11 类是不能做运算的,必需先转成基本数据类型

}

}




3.  JDK 5.0新特性:自动装箱与自动拆箱



public class BasicTest {

public static void main(String[] args) {

 	BasicTest basicTest=new BasicTest();

    int i2=20;

    basicTest.method(i2);

    // 自动转化为Object类的子类Integer

    // 20



    //自动装箱

    int num3=30;

    Integer integer3=num3;

    System.out.println(integer3.toString());

    // 30

   

    //自动拆箱

    int num4=integer3;

    System.out.println("num4" + num4);

    // num4 30 



}

public void method(Object object){

    System.out.println(object);

}

}




[]( )基本数据类型,包装类转换为String类型

----------------------------------------------------------------------------------------



1.  调用String的重载valueOf()

2.  也可以直接运算基本数据类型\+ “”

3.  示例:



public class StringTest {

public static void main(String[] args) {

    int num=10;

    String str1=num +"";

    System.out.println(str1);

    //10

    float f1=12.3f;

    String str2=String.valueOf(f1);

    System.out.println(str2);

    //12.3

}

}




[]( )String转换为基本数据类型,包装类

--------------------------------------------------------------------------------------



1.  调用包装类的parseXXX()

2.  示例:



public class StringTest {

public static void main(String[] args) {

    String str3="123";

    int num2=Integer.parseInt(str3);

 	System.out.println(num2);

 	 //123

    String str4="true";

    boolean b1=Boolean.parseBoolean(str4);

    System.out.println(b1);

     //true

    String str5="true5";

性能优化

1.webpack打包文件体积过大?(最终打包为一个js文件)

2.如何优化webpack构建的性能

3.移动端的性能优化

4.Vue的SPA 如何优化加载速度

5.移动端300ms延迟

6.页面的重构

所有的知识点都有详细的解答,我整理成了280页PDF《前端校招面试真题精编解析》。

  • 8
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值