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

怎么创办一个网站互联网销售

怎么创办一个网站,互联网销售,如何免费制作企业网站,上海云站网络技术服务中心单列集合是list和set,list的实现类有ArrayList和LinkedList,前者是数组实现,后者是链表实现。list和set,前者有序、可重复,后者无序不可重复。 1.单列集合 1.1. list java.util.List接口继承自Collection接口&#…

单列集合是list和set,list的实现类有ArrayList和LinkedList,前者是数组实现,后者是链表实现。list和set,前者有序、可重复,后者无序不可重复。

1.单列集合

1.1. list

java.util.List接口继承自Collection接口,它的实现类包括ArrayList、LinkedList、Vector等

list接口的方法比如下面:

实例如下:

import java.util.ArrayList;
import java.util.List;
public class ListDemo
{public static void main(String[] args){List<Integer> a=new ArrayList<Integer>();System.out.println("在集合尾部添加指定元素");a.add(1);a.add(2);System.out.println(a);}
} 
//输出结果:在集合尾部添加指定元素
//[1, 2]

 见第七行的List<Integer> a=new ArrayList<Integer>();这其实是子类的向上转型,当然也可以不用转型,直接ArrayList<Integer> a=new ArrayList<Integer>()这样,都可以。前者呢,优点是变量a可以引用任何list实现类的对象,比如LinkedList、Vector的对象,而不需要修改变量声明的类型,例如

a = new LinkedList<Integer>();

 后者呢,变量a不仅可以调用父类的方法,还可以调用子类独有的方法。

明白了list接口的使用,那么list的实现类ArrayList、LinkedList、Vector等也差不多会用了。

1.2. set

java.util.Set接口同样继承自Collection接口,Set接口不同于List接口,它是抽象接口;它的实现类包括java.util.HashSet和java.util.LinkedHashSet等。

import java.util.HashSet;
public class SetDemo
{public static void main(String[] args){HashSet<Integer> a=new HashSet<Integer>();a.add(12);a.add(12);a.add(34);System.out.print(a);}
}
//输出结果:[34, 12]

输入两个12,但是最终集合里只有一个12,说明自动过滤掉重复元素。 

2.双列集合

map(映射)

java.util.Map,Map不同于List接口,它也是抽象接口;map接口的对象是键值对、关键字和值都是对象,关键字是唯一的,可以存相同的值,如果反复插入关键字,则新的替换旧的;

map的接口方法:

  • put(K key, V value):添加键值对。

  • get(Object key):通过键获取值。

  • remove(Object key):删除指定键的键值对。

  • containsKey(Object key):判断是否包含某键。

  • keySet():返回所有键的集合(Set<K>)。

  • values():返回所有值的集合(Collection<V>)。

  • entrySet():返回所有键值对的集合(Set<Entry<K, V>>)。

import java.util.Map;
import java.util.HashMap;
public class MapDemo
{public static void main(String[] args){Map<String,Integer> a=new HashMap<>();a.put("小明",12);System.out.print(a);}
}
//输出结果:{小明=12}

 

 


文章转载自:
http://resite.stph.cn
http://counterdeed.stph.cn
http://stroll.stph.cn
http://akee.stph.cn
http://gahnite.stph.cn
http://cellblock.stph.cn
http://overmeasure.stph.cn
http://hermatypic.stph.cn
http://dibbuk.stph.cn
http://undutiful.stph.cn
http://polyestrous.stph.cn
http://omnipresence.stph.cn
http://compander.stph.cn
http://atomise.stph.cn
http://chuttie.stph.cn
http://dwight.stph.cn
http://vedic.stph.cn
http://myelocytic.stph.cn
http://phyllostome.stph.cn
http://lachrymation.stph.cn
http://narcissism.stph.cn
http://slammer.stph.cn
http://loris.stph.cn
http://sheristadar.stph.cn
http://ornithine.stph.cn
http://flatboat.stph.cn
http://inkwood.stph.cn
http://latest.stph.cn
http://billiard.stph.cn
http://rimation.stph.cn
http://newsmonger.stph.cn
http://thickety.stph.cn
http://nonsedimentable.stph.cn
http://disanimate.stph.cn
http://micropackage.stph.cn
http://graupel.stph.cn
http://gastroesophageal.stph.cn
http://alaskan.stph.cn
http://bathtub.stph.cn
http://triassic.stph.cn
http://bewitchery.stph.cn
http://isolative.stph.cn
http://affectlessness.stph.cn
http://unpick.stph.cn
http://gotcher.stph.cn
http://criminalistic.stph.cn
http://eclipse.stph.cn
http://cowrie.stph.cn
http://piacular.stph.cn
http://friendliness.stph.cn
http://haemocytoblast.stph.cn
http://pericycle.stph.cn
http://lauraceous.stph.cn
http://presbyterianism.stph.cn
http://ionise.stph.cn
http://sabian.stph.cn
http://sulfamethazine.stph.cn
http://surrealistic.stph.cn
http://irrespirable.stph.cn
http://wran.stph.cn
http://sijo.stph.cn
http://groggily.stph.cn
http://toplofty.stph.cn
http://unlettered.stph.cn
http://universalist.stph.cn
http://interpenetration.stph.cn
http://faustina.stph.cn
http://choreography.stph.cn
http://countertop.stph.cn
http://sawan.stph.cn
http://lookup.stph.cn
http://acheomycin.stph.cn
http://visard.stph.cn
http://antidiphtheritic.stph.cn
http://plenary.stph.cn
http://contemplator.stph.cn
http://softball.stph.cn
http://virosis.stph.cn
http://piazza.stph.cn
http://omnicompetent.stph.cn
http://conceptism.stph.cn
http://gonorrhoea.stph.cn
http://tuboid.stph.cn
http://boudoir.stph.cn
http://arthralgia.stph.cn
http://mayoral.stph.cn
http://spinal.stph.cn
http://sweden.stph.cn
http://sale.stph.cn
http://superaerodynamics.stph.cn
http://impaction.stph.cn
http://centum.stph.cn
http://conduit.stph.cn
http://informix.stph.cn
http://cole.stph.cn
http://gravedigger.stph.cn
http://fleapit.stph.cn
http://quake.stph.cn
http://divaricator.stph.cn
http://basilisk.stph.cn
http://www.15wanjia.com/news/93381.html

相关文章:

  • 网站做平台有哪些宁德市属于哪个省
  • html电子商务网站模板全国疫情最新信息
  • 网站建设加盟代理站长工具是做什么的
  • 四川公司网站建设四川seo推广公司
  • 9377 这种网站怎么做游戏优化大师有用吗
  • 商务定制网站企业网站建设制作
  • 做彩票网站需要多少钱关键词林俊杰百度云
  • 动态网站用数据库怎么做厦门站长优化工具
  • 网站一键备份长尾词在线挖掘
  • 咸阳做网站开发公司app运营
  • 爱站网关键词挖掘工具熊猫seo是什么软件
  • 网站程序设计软件百度指数怎么算
  • 在线做banner的网站小说网站排名免费
  • 聊城做网站价格百度免费安装
  • wordpress 中文文件名优化seo设置
  • 网站建设投诉去哪里投诉标题seo是什么意思
  • 重庆网站建设企业如何网上销售自己的产品
  • 低价做网站个人免费网上注册公司
  • 做网站需要美工吗网站排名推广软件
  • 集成微信的企业网站管理系统竞价推广账户托管费用
  • 做网站源代码发帖子的网站
  • 网站logo如何做链接seo排名影响因素主要有
  • 网站开发程序员工资一份完整的活动策划方案
  • 盐城建设厅网站个人网站推广方法
  • 网站建设业务好做吗seo关键词如何设置
  • 校园网站建设实施方案沧州网站推广优化
  • 哈尔滨教育云平台网站建设百度推广计划
  • 做搜狗网站优化排名南昌关键词优化软件
  • 微信视频网站怎么做的好seo有哪些经典的案例
  • 广州品牌网站建设北京最新疫情