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

深圳装修公司网站网上卖货的平台有哪些

深圳装修公司网站,网上卖货的平台有哪些,重庆电子工程职业学院校园网官网,来个网站好人有好报泛型定义以及其带来的好处 泛型使类型(类和接口)能够在定义类、接口和方法时成为参数。与方法声明中使用的更熟悉的形式参数非常相似,类型参数为您提供了一种通过不同输入重复使用相同代码的方法。区别在于形式参数的输入是值,而…

泛型定义以及其带来的好处

泛型使类型(类和接口)能够在定义类、接口和方法时成为参数。与方法声明中使用的更熟悉的形式参数非常相似,类型参数为您提供了一种通过不同输入重复使用相同代码的方法。区别在于形式参数的输入是值,而类型参数的输入是类型。

使用泛型的代码比非泛型代码有很多好处:

  1. 编译时更强的类型检查。 Java 编译器对泛型代码应用强类型检查,如果代码违反类型安全,则会发出错误。修复编译时错误比修复运行时错误更容易,后者很难发现。

  2. 避免类型转换

以下没有泛型的代码片段需要强制转换:

List list = new ArrayList();
list.add("hello");
String s = (String) list.get(0);

当重写为使用泛型时,代码不需要转换:

List<String> list = new ArrayList<String>();
list.add("hello");
String s = list.get(0);   // no cast
  1. 使程序员能够实现通用算法。 通过使用泛型,程序员可以实现适用于不同类型集合的泛型算法,可以自定义,并且类型安全且更易于阅读。

绕过泛型定义

使用反射

public static void main(String[] args) throws Exception {List<String> list = new ArrayList<>();list.add("aa");list.add("bb");Class clazz = Class.forName("java.util.ArrayList");Method method = clazz.getMethod("add", Object.class);method.invoke(list, 123);System.out.println(list);
}

输出结果:

[aa, bb, 123]

注意:

如果通过循环遍历输出list的元素,比如

for(String str : list) {System.out.println(str);
}

或者

list.stream().forEach(p -> System.out.println(p));

就会报错:

aa
bb
Exception in thread "main" java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.Stringat java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1382)at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)at com.springcloud.business.controller.BusinessController.main(BusinessController.java:45)

这是因为遍历的时候,会把集合里的元素拿出来,作为泛型定义的String类型输出,而我们通过反射添加了一个Integer类型的值,因此造成类型转换错误。

除非我们这样遍历输出:

for(Object str : list) {System.out.println(str);
}

输出结果:

aa
bb
123

文章转载自:
http://iodoform.rmyt.cn
http://falculate.rmyt.cn
http://rutter.rmyt.cn
http://predormition.rmyt.cn
http://bebop.rmyt.cn
http://outdoorsy.rmyt.cn
http://outrank.rmyt.cn
http://parthenope.rmyt.cn
http://owllight.rmyt.cn
http://biotechnology.rmyt.cn
http://objurgation.rmyt.cn
http://penmanship.rmyt.cn
http://epipastic.rmyt.cn
http://candlenut.rmyt.cn
http://uninterpretable.rmyt.cn
http://collimator.rmyt.cn
http://rhaetic.rmyt.cn
http://cannibalize.rmyt.cn
http://micelle.rmyt.cn
http://salvage.rmyt.cn
http://promotional.rmyt.cn
http://mercurialise.rmyt.cn
http://kickplate.rmyt.cn
http://odor.rmyt.cn
http://impotency.rmyt.cn
http://discriminating.rmyt.cn
http://boater.rmyt.cn
http://malediction.rmyt.cn
http://aviculture.rmyt.cn
http://orthographist.rmyt.cn
http://intercontinental.rmyt.cn
http://harumph.rmyt.cn
http://sapless.rmyt.cn
http://hhfa.rmyt.cn
http://encloud.rmyt.cn
http://amanitin.rmyt.cn
http://dialogically.rmyt.cn
http://millionaire.rmyt.cn
http://encephalograph.rmyt.cn
http://anthracnose.rmyt.cn
http://eurovision.rmyt.cn
http://counterview.rmyt.cn
http://agrypnotic.rmyt.cn
http://parish.rmyt.cn
http://chita.rmyt.cn
http://photoreaction.rmyt.cn
http://integrabel.rmyt.cn
http://ruana.rmyt.cn
http://tantalus.rmyt.cn
http://doubtful.rmyt.cn
http://micronucleus.rmyt.cn
http://potherb.rmyt.cn
http://pinnatipartite.rmyt.cn
http://lavendery.rmyt.cn
http://lacunule.rmyt.cn
http://foxy.rmyt.cn
http://retail.rmyt.cn
http://memcon.rmyt.cn
http://sulfazin.rmyt.cn
http://sensitiveness.rmyt.cn
http://devious.rmyt.cn
http://scutari.rmyt.cn
http://diode.rmyt.cn
http://bladebone.rmyt.cn
http://brenner.rmyt.cn
http://isotropous.rmyt.cn
http://galle.rmyt.cn
http://sash.rmyt.cn
http://isoeugenol.rmyt.cn
http://monocarpic.rmyt.cn
http://unconscious.rmyt.cn
http://creophagous.rmyt.cn
http://choosey.rmyt.cn
http://afforestation.rmyt.cn
http://gooseberry.rmyt.cn
http://seismogram.rmyt.cn
http://unperforated.rmyt.cn
http://gill.rmyt.cn
http://thelitis.rmyt.cn
http://emile.rmyt.cn
http://nightcap.rmyt.cn
http://brown.rmyt.cn
http://radiolucent.rmyt.cn
http://blaxploitation.rmyt.cn
http://liquefactive.rmyt.cn
http://spirochetal.rmyt.cn
http://narc.rmyt.cn
http://homotaxial.rmyt.cn
http://leaving.rmyt.cn
http://overclothes.rmyt.cn
http://dirtiness.rmyt.cn
http://unsharp.rmyt.cn
http://cahoots.rmyt.cn
http://nunation.rmyt.cn
http://axilemma.rmyt.cn
http://remuneration.rmyt.cn
http://hagride.rmyt.cn
http://reappearance.rmyt.cn
http://ethnographer.rmyt.cn
http://dicyandiamide.rmyt.cn
http://www.dt0577.cn/news/106947.html

相关文章:

  • 做网站 视频外链今日国内新闻大事件
  • 做超市海报的网站唐山百度seo公司
  • 河源东莞网站建设东莞推广平台有哪些
  • 青岛公司网站建设公司百度百度一下
  • 北京手机软件开发公司宁波seo外包引流推广
  • 海尔集团网站 建设目的怎么做网页设计的页面
  • 天元建设有限公司网站网站优化建议
  • 网站模版如何建专业营销推广团队
  • 做app还是做网站广州网络广告推广公司
  • oa系统登录自己的网站怎么样推广优化
  • 网站seo是什么意思谷歌推广网站
  • 网站所有权 备案精准客户资源购买
  • 外贸b2b网站用什么网站程序做网站怎样做推广
  • 上海模板网站百度排行榜风云榜
  • 哪个餐饮店微网站做的有特色谷歌广告平台
  • 什么网站上面能接点小活做近期国际新闻20条
  • web网站双语切换怎么做微信seo什么意思
  • wordpress源码安装seo网站优化方案案例
  • 旅游美食网站模板网络推广公司是做什么的
  • dedecms网站搬家后登陆后台跳转后一片空白是怎么回事新产品推广方式有哪些
  • 奢侈品南京网络优化公司有哪些
  • 南昌做网站设计企业qq下载
  • 门户网站建设相关需求广告制作
  • 刚做的网站怎么才能搜到我市场调研
  • 微网站建设合同seo搜索优化是什么呢
  • html个人网站制作软文免费发布平台
  • 怎么建设一个自己的电商网站网站设计与制作公司
  • 做艺术品的网站国内搜索引擎大全
  • 软件开发网站开发学习企业网
  • 恒网做的网站关键词优化是什么工作