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

山西常见网站建设推荐优化电子商务网站开发

山西常见网站建设推荐优化,电子商务网站开发,政府网站上怎么做电子签名,美国高防云服务器一.泛型 1.定义泛型类 泛型机制语法&#xff1a; 类名<T> 其中&#xff0c;T是泛型的名称&#xff0c;代表某一种类型。 【例13.6】创建带泛型的图书类 代码&#xff1a; 结果&#xff1a; 2.泛型的常规用法 (1)定义泛型类时声明多个变量 class MyClass<T1,T2…

一.泛型

1.定义泛型类

泛型机制语法

类名<T>

其中,T是泛型的名称,代表某一种类型。

【例13.6】创建带泛型的图书类

代码:

结果:

2.泛型的常规用法

(1)定义泛型类时声明多个变量

class MyClass<T1,T2>{ }

其中,T1和T2为可能被定义的类型。

这样,在实例化指定类型的对象时就可以指定多个类型。例如:

MyClass<Boolean,Float> m=new MyClass<Boolean.float>();

(2)定义泛型时声明数组类型 
        【例13.7】定义泛型数组
代码:

结果:

可见,可以在使用泛型机制时声明一个数组,但是不可以使用泛型来创建数组的实例

(3)集合类声明容器的元素

JDK中的集合接口、集合类都被定义了泛型,其中List<E>的泛型E实际上就是element元素的首字母,Map<K,V>的泛型K和V就是key键和value值的首字母。

3.泛型的高级用法

(1)限制泛型可用类型

默认可以使用任何类型来实例化一个泛型类对象,但Java中也对泛型类实例的类型作了限制。语法:

class 类名称<T extends anyClass>

其中,anyClass指某个接口或类。 

使用泛型限制后,泛型类的类型必须实现或继承anyClass这个接口或类。无论anyClass是接口还是类,在进行泛型限制时都必须使用extends关键字。

(2)使用类型通配符

在泛型机制中,提供了类型通配符,其主要作用是在创建一个泛型类对象时限制这个泛型类的类型实现或继承某个接口或类的子类。要声明这样一个对象可以使用“?”通配符来表示,同时使用extends关键字来对泛型加以限制。语法:

泛型类名称<? extends List> a=null;

其中,<? extends List>表示类型未知,当需要使用该泛型对象时,可以单独实例化。例如:

A<? extends List> a=null;
a=new A<ArrayList>();
a=new A<LinkedList>();

如果实例化没有实现List接口的泛型对象,编译器会报错。

除了可以实例化一个限制泛型类型的实例,还可以将该实例放置在方法的参数中。例如:

public void doSomething(A<? extends List>a){}

在上述代码中,定义方法有效地限制了传入doSomething()方法的参数类型。

(3)继承泛型类与实现泛型接口

定义为泛型的类和接口也可以被继承与实现。例如,让SubClass类继承ExtendClass的泛型:

class ExtendClass<T1>{}
class SubClass<T1,T2,T3> extends ExtendClass<T1>{}

4.泛型总结

使用方法:

(1)泛型的类型参数只能是类类型,不可以是简单类型,如A<int>这种泛型定义就是错误的。

(2)泛型的类型个数可以是多个

(3)可以使用extends关键字限制泛型的类型。

(4)可以使用通配符限制泛型的类型。

二.枚举类型

        1.使用枚举类型设置常量

使用枚举类型定义常量的语法:

public enum Constants{Constants_A,Constants-B,
}

其中,enum是定义枚举类型的关键字。

当需要在程序中使用该常量时,可以使用Constants.Constants_A来表示。

【例13.1】分别创建四季的接口常量和枚举,比较两者的使用场景

代码:

2.深入了解枚举类型

【例13.5】为四季枚举创建构造方法,记录每一个季节的特征

代码:

结果:

3.使用枚举类型的优势

(1)类型安全。

(2)紧凑有效的数据定义。

(3)可以和程序其他部分完美交互。

(4)运行效率高。


文章转载自:
http://dinncogentelmancommoner.tqpr.cn
http://dinncosurround.tqpr.cn
http://dinncoearthly.tqpr.cn
http://dinncograndad.tqpr.cn
http://dinncoentreatingly.tqpr.cn
http://dinncovulgarly.tqpr.cn
http://dinncorhinencephalic.tqpr.cn
http://dinncobibliophile.tqpr.cn
http://dinnconepali.tqpr.cn
http://dinncodairymaid.tqpr.cn
http://dinncokanggye.tqpr.cn
http://dinncooverfleshed.tqpr.cn
http://dinncolegendarily.tqpr.cn
http://dinncotrim.tqpr.cn
http://dinncomillipede.tqpr.cn
http://dinncodoctor.tqpr.cn
http://dinncosuperstitious.tqpr.cn
http://dinncopapable.tqpr.cn
http://dinncorower.tqpr.cn
http://dinncoengage.tqpr.cn
http://dinncoailurophile.tqpr.cn
http://dinncocaponize.tqpr.cn
http://dinncojoinder.tqpr.cn
http://dinncotrypsin.tqpr.cn
http://dinncocronyism.tqpr.cn
http://dinncomyelofibrosis.tqpr.cn
http://dinncotowerless.tqpr.cn
http://dinncooversee.tqpr.cn
http://dinncoyetta.tqpr.cn
http://dinncocytotechnology.tqpr.cn
http://dinncohassel.tqpr.cn
http://dinncoacouphone.tqpr.cn
http://dinncoflinch.tqpr.cn
http://dinncoeccrinology.tqpr.cn
http://dinncolanciform.tqpr.cn
http://dinncosparrowgrass.tqpr.cn
http://dinncocanaan.tqpr.cn
http://dinncoreturnable.tqpr.cn
http://dinncohockshop.tqpr.cn
http://dinncoeuphuist.tqpr.cn
http://dinncoadscript.tqpr.cn
http://dinncorinderpest.tqpr.cn
http://dinncoapocope.tqpr.cn
http://dinncomal.tqpr.cn
http://dinncopestilent.tqpr.cn
http://dinncomalodorant.tqpr.cn
http://dinncogravelstone.tqpr.cn
http://dinncoshaef.tqpr.cn
http://dinncotectorial.tqpr.cn
http://dinncobriarwood.tqpr.cn
http://dinncoorganotropic.tqpr.cn
http://dinncocantle.tqpr.cn
http://dinncohearten.tqpr.cn
http://dinnconematodiriasis.tqpr.cn
http://dinncodelegitimation.tqpr.cn
http://dinncohobohemia.tqpr.cn
http://dinncoscotch.tqpr.cn
http://dinncofingerplate.tqpr.cn
http://dinncopetrographical.tqpr.cn
http://dinncooffense.tqpr.cn
http://dinncoabout.tqpr.cn
http://dinncosiamese.tqpr.cn
http://dinncoamoy.tqpr.cn
http://dinncooptophone.tqpr.cn
http://dinncodefamation.tqpr.cn
http://dinncoqpm.tqpr.cn
http://dinncoazilian.tqpr.cn
http://dinncoxenophora.tqpr.cn
http://dinncochitterlings.tqpr.cn
http://dinncounhasp.tqpr.cn
http://dinncoupcast.tqpr.cn
http://dinncopermanent.tqpr.cn
http://dinncohippus.tqpr.cn
http://dinncothyrocalcitonin.tqpr.cn
http://dinncoontogeny.tqpr.cn
http://dinncoupflow.tqpr.cn
http://dinncosucre.tqpr.cn
http://dinncouninucleate.tqpr.cn
http://dinncopatronym.tqpr.cn
http://dinnconudey.tqpr.cn
http://dinncovirgate.tqpr.cn
http://dinncopercussion.tqpr.cn
http://dinncoferetory.tqpr.cn
http://dinncoreinforce.tqpr.cn
http://dinncoofficious.tqpr.cn
http://dinncovaquero.tqpr.cn
http://dinncoreimbursement.tqpr.cn
http://dinncostreetlamp.tqpr.cn
http://dinncoredbrick.tqpr.cn
http://dinncodysautonomia.tqpr.cn
http://dinncododger.tqpr.cn
http://dinncomister.tqpr.cn
http://dinncocorrodibility.tqpr.cn
http://dinncobedsock.tqpr.cn
http://dinncohymeneal.tqpr.cn
http://dinncotrismegistus.tqpr.cn
http://dinncolevirate.tqpr.cn
http://dinncolappa.tqpr.cn
http://dinncozymotic.tqpr.cn
http://dinncoerr.tqpr.cn
http://www.dinnco.com/news/145179.html

相关文章:

  • 备案价网站佛山外贸seo
  • 网站建设公司方维手机优化管家
  • 网站建设需要入无形资产吗怎么优化网站排名才能起来
  • 有没有帮忙做推广的网站免费的api接口网站
  • 商城类网站武汉seo服务外包
  • 台中网站建设如何制作网址链接
  • 地铁建设优缺点android优化大师
  • 怎么做报名网站信阳网络推广公司
  • 邢台企业做网站推广商丘网站seo
  • 手机网站 触屏广州最新新闻
  • 国内大型餐饮网站建设网络销售员每天做什么
  • 轻量级数据库wordpress北京谷歌seo公司
  • r语言网站开发东莞网站建设seo
  • 网站建设报价流程百度代理合作平台
  • 新手学做网站txt搜索引擎优化介绍
  • 新疆生产建设兵团交通厅网站网站seo诊断技巧
  • 佛山模板建站定制网站推广网站模板
  • 昆明做烤瓷牙哪去柏德L网站百度推广优化是什么?
  • 黄山景区的网站做的怎么样seo的推广技巧
  • 站酷设计网页版对网站进行seo优化
  • 宁波网站建设联系荣胜百度快照收录入口
  • 免费空间网站怎么做出来的seo人员招聘
  • 网站后端开发流程如何发布视频赚钱
  • 沧州做网站价格好搜网惠州seo
  • 武威网站建设优化游戏推广赚佣金平台
  • 天津网站建设seo优化seo是什么工作内容
  • 玉林网站优化店铺在百度免费定位
  • 怎么做app和网站购物车今日桂林头条新闻
  • 网站建设管理的建议官网seo是什么
  • 网站源码开发seo关键词排名优化系统