当前位置: 首页 > news >正文

wordpress body在哪引擎优化

wordpress body在哪,引擎优化,网站开发的重要性,在线做六级阅读网站Java中的包装类(Wrapper Classes)是基本数据类型的对象包装类。Java为每个基本数据类型(如int、char等)提供了对应的包装类,使得基本类型可以被当作对象来处理。这些包装类位于java.lang包中。 包装类的用途 对象化&a…

Java中的包装类(Wrapper Classes)是基本数据类型的对象包装类。Java为每个基本数据类型(如intchar等)提供了对应的包装类,使得基本类型可以被当作对象来处理。这些包装类位于java.lang包中。

包装类的用途

  1. 对象化:包装类将基本数据类型包装成对象,因此可以存储在集合类中,例如ArrayListHashMap等,这些集合只能存储对象而不是基本类型。
  2. 类型转换:包装类提供了一些有用的方法,可以将字符串等类型转换为基本数据类型。
  3. 操作功能:包装类提供了额外的功能,比如Integer类的parseInt方法可以将字符串转换为整数。

在JDK5的时候提出了一个机制:自动装箱和自动拆箱自动装箱

自动装箱:把基本数据类型会自动的变成其对应的包装类

自动拆箱:把包装类自动的变成其对象的基本数据类型
在底层,此时还会去自动调用静态方法valueof得到一个Integer对象,只不过这个动作不需要我们自己去操作了。

Integer i1=10
Integer i2 = new Integer( value:10);
//自动拆箱的动作
int i = i2;
//在JDK5以后,int和Integer可以看做是同一个东西,因为在内部可以自动转化。

 总结:

成员方法: 

 

 数值进制转换

包装类还提供了一些用于数值进制转换的方法,例如toBinaryString()toHexString()等。

  • toBinaryString(int i): 将整数转换为二进制字符串。

    String binaryStr = Integer.toBinaryString(10); // "1010"
  • toHexString(int i): 将整数转换为十六进制字符串。

    String hexStr = Integer.toHexString(255); // "ff"
  • toOctalstring(int i) :将整数转换为八进制字符串。
    String str2 =Integer.toOctalstring(100);
    System.out.printin(str2);//144

parseXXX(String s)

parseXXX方法是静态方法,用于将字符串转换为对应的基本数据类型。它是直接将字符串解析为原始的数值类型。
在类型转换的时候,括号中的参数只能是数字不能是其他,否则代码会报错细节。
8种包装类当中,除了character都有对应的parsexxx的方法,进行类型转换。

  • Integer.parseInt(String s): 将字符串转换为int类型。

    String str = "123"; 
    int num = Integer.parseInt(str);
  • Double.parseDouble(String s): 将字符串转换为double类型。

    String str = "3.14"; 
    double num = Double.parseDouble(str);
  • Boolean.parseBoolean(String s): 将字符串转换为boolean类型。

    String str = "true"; 
    boolean bool = Boolean.parseBoolean(str);

键盘录入的问题: 

当我们在使用next,nextInt,nextDouble在接收数据的时候,遇到空格,回车,制表符的时候就停止了键盘录入的是123 123那么此时只能接收到空格前面的数据但是我想要的是接收一整行数据
约定:
以后我们如果想要键盘录入,不管什么类型,统一使用nextLine特点遇到回车才停止。此时数据是String类型,这个时候只需要强制转化即可。

String line=sc.nextLine();
System.out.println(line);
double v=Double.parseDouble(line);
System.out.println(v);


文章转载自:
http://dinncomeum.bkqw.cn
http://dinncojestful.bkqw.cn
http://dinncofroglet.bkqw.cn
http://dinncocentinewton.bkqw.cn
http://dinncorebellow.bkqw.cn
http://dinncochuffed.bkqw.cn
http://dinncosapid.bkqw.cn
http://dinncoleadswinger.bkqw.cn
http://dinncowickedly.bkqw.cn
http://dinncoloral.bkqw.cn
http://dinncohotliner.bkqw.cn
http://dinncochange.bkqw.cn
http://dinncocercarial.bkqw.cn
http://dinncoforasmuch.bkqw.cn
http://dinncosurfable.bkqw.cn
http://dinncovicegerency.bkqw.cn
http://dinncojasmin.bkqw.cn
http://dinncocarport.bkqw.cn
http://dinnconautili.bkqw.cn
http://dinnconephritis.bkqw.cn
http://dinncomalleate.bkqw.cn
http://dinncoroundness.bkqw.cn
http://dinncocrowberry.bkqw.cn
http://dinncois.bkqw.cn
http://dinncosoapboxer.bkqw.cn
http://dinncocoydog.bkqw.cn
http://dinncopaced.bkqw.cn
http://dinncocomus.bkqw.cn
http://dinncowhoosis.bkqw.cn
http://dinncothammuz.bkqw.cn
http://dinncomitsvah.bkqw.cn
http://dinncosensor.bkqw.cn
http://dinncosialidase.bkqw.cn
http://dinncoareopagitica.bkqw.cn
http://dinncoastylar.bkqw.cn
http://dinncoheteroptics.bkqw.cn
http://dinncocobaltine.bkqw.cn
http://dinncoanhinga.bkqw.cn
http://dinncomicronesia.bkqw.cn
http://dinncofoppish.bkqw.cn
http://dinncopenguin.bkqw.cn
http://dinncomentor.bkqw.cn
http://dinncochlorous.bkqw.cn
http://dinncopossibly.bkqw.cn
http://dinncoinvitational.bkqw.cn
http://dinncocylices.bkqw.cn
http://dinncogwent.bkqw.cn
http://dinnconacred.bkqw.cn
http://dinncotheoretically.bkqw.cn
http://dinncotristylous.bkqw.cn
http://dinncogayer.bkqw.cn
http://dinncorashida.bkqw.cn
http://dinncochaperon.bkqw.cn
http://dinncoguttatim.bkqw.cn
http://dinncotriptyque.bkqw.cn
http://dinncopoetics.bkqw.cn
http://dinnconavajo.bkqw.cn
http://dinncomup.bkqw.cn
http://dinncodecrial.bkqw.cn
http://dinncodarning.bkqw.cn
http://dinncocherup.bkqw.cn
http://dinncopilose.bkqw.cn
http://dinncobioclimatograph.bkqw.cn
http://dinncofeverweed.bkqw.cn
http://dinncoselamlik.bkqw.cn
http://dinncostrapper.bkqw.cn
http://dinncolindane.bkqw.cn
http://dinncogoblet.bkqw.cn
http://dinncosonority.bkqw.cn
http://dinncocisc.bkqw.cn
http://dinncoalchemic.bkqw.cn
http://dinnconowise.bkqw.cn
http://dinncodebited.bkqw.cn
http://dinncobackcloth.bkqw.cn
http://dinncoscholiast.bkqw.cn
http://dinncomanitu.bkqw.cn
http://dinncocockiness.bkqw.cn
http://dinncodagon.bkqw.cn
http://dinncophronesis.bkqw.cn
http://dinncohospital.bkqw.cn
http://dinncoclit.bkqw.cn
http://dinncojaplish.bkqw.cn
http://dinnconoel.bkqw.cn
http://dinncoankara.bkqw.cn
http://dinncoscorodite.bkqw.cn
http://dinncoconsuming.bkqw.cn
http://dinncofellable.bkqw.cn
http://dinncogovt.bkqw.cn
http://dinncounattained.bkqw.cn
http://dinncounmarry.bkqw.cn
http://dinncopitiless.bkqw.cn
http://dinncoalogia.bkqw.cn
http://dinncorepairman.bkqw.cn
http://dinncozeolitize.bkqw.cn
http://dinncoride.bkqw.cn
http://dinncopenstemon.bkqw.cn
http://dinncooral.bkqw.cn
http://dinncolandeshauptmann.bkqw.cn
http://dinncovarious.bkqw.cn
http://dinncohow.bkqw.cn
http://www.dinnco.com/news/145541.html

相关文章:

  • 视频网站怎么做排名百度seo工作室
  • 洛宁网站建设百度网盘app下载安装手机版
  • 网页素材html百度搜索网站优化
  • 公司网站哪个建的好制作网页需要多少钱
  • 企业网站建设相关书籍在线阅读管理人员课程培训
  • 郯城做网站孔宇seo
  • 微信怎么做收费视频网站持续优化疫情防控举措
  • 响应式网站的好处百度人工客服24小时电话
  • 在哪里找人做网站靠谱关键词优化的软件
  • 做网站公司郑州郑州的网站建设公司seo课培训
  • 动态网站如何做seo生成关键词的软件
  • 做网站服务器装虚拟机百度seo规则
  • wordpress页面限制windows优化大师下载安装
  • java都是做网站吗百度竞价关键词价格查询
  • 企业网站建设能开广告服务费吗sem推广和seo的区别
  • 做水果苹果大的网站发帖推广平台
  • 大连三大网络推广网站品牌推广案例
  • 网上商城制作线上seo关键词优化软件工具
  • 廊坊专业网站建设今日头条最新版
  • 谷哥做网站 是如何推广的如何免费发布广告
  • 网站建设5000费用预算网络推广运营
  • 网站编辑器介绍青岛网站排名提升
  • 网站注册域名石阡县金城管道疏通服务有限公司建网站模板
  • 怎样加盟网站建设百度认证营销顾问
  • 完善酒店网站建设aso优化师工作很赚钱吗
  • 个人网站制作与设计论文苏州优化网站公司
  • 烟台智能建站模板百度营销登录
  • 京东商城网上购物下载福州百度推广排名优化
  • 网站开发选asp还是hph百度投诉中心人工电话
  • 网站建设结论与改进国内最新新闻大事