linkedhashset_Java LinkedHashSet contains()方法与示例

linkedhashset

LinkedHashSet类contains()方法 (LinkedHashSet Class contains() method)

  • contains() method is available in java.util package.

    contains()方法在java.util包中可用。

  • contains() method is used to check whether the given object (ob) exists or not exists in this LinkedHashSet.

    contains()方法用于检查给定对象(ob)在此LinkedHashSet中是否存在。

  • contains() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.

    contains()方法是一个非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • contains() method does not throw an exception at the time of checking elements.

    contains()方法在检查元素时不会引发异常。

Syntax:

句法:

    public boolean contains(Object ob);

Parameter(s):

参数:

  • Object ob – represents the object to be tested for its existence in this LinkedHashSet.

    对象ob –表示要测试的对象在此LinkedHashSet中是否存在。

Return value:

返回值:

The return type of the method is boolean, it returns true when the given object exists otherwise it returns false.

方法的返回类型为boolean ,当给定对象存在时返回true ,否则返回false

Example:

例:

// Java program to demonstrate the example 
// of boolean contains(Object ob)  method of  
// LinkedHashSet 
import java.util.*;
public class ContainsOfLinkedHashSet {
public static void main(String[] args) {
// Instantiates a LinkedHashSet object
HashSet < String > hs = new LinkedHashSet < String > ();
// By using add() method is to add
// the given object of this
// LinkedHashSet 
hs.add("C");
hs.add("C++");
hs.add("JAVA");
hs.add("PHP");
hs.add("SFDC");
// Display LinkedHashSet
System.out.println("LinkedHashSet: " + hs);
// By using contains() method is to 
// check whether the given object exists
// or not exists in this LinkedHashSet
boolean status = hs.contains("JAVA");
// Display Status
System.out.println("hs.contains(JAVA): " + status);
}
}

Output

输出量

LinkedHashSet: [C, C++, JAVA, PHP, SFDC]
hs.contains(JAVA): true

翻译自: https://www.includehelp.com/java/linkedhashset-contains-method-with-example.aspx

linkedhashset

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/544899.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Listener refused the connection with the following error 错误解决(最大连接数)

查询数据库当前进程的连接数&#xff1a;   select count(*) from v$process;   查看数据库当前会话的连接数&#xff1a;   elect count(*) from v$session;   查看数据库的并发连接数&#xff1a;   select count(*) from v$session where statusACTIVE;…

用Netty撸一个心跳机制和断线重连!

来源&#xff1a;www.jianshu.com/p/1a28e48edd92心跳机制何为心跳所谓心跳, 即在 TCP 长连接中, 客户端和服务器之间定期发送的一种特殊的数据包, 通知对方自己还在线, 以确保 TCP 连接的有效性.注&#xff1a;心跳包还有另一个作用&#xff0c;经常被忽略&#xff0c;即&…

ThreadLocal线程范围内的共享变量

模拟ThreadLocal类实现&#xff1a;线程范围内的共享变量&#xff0c;每个线程只能访问他自己的&#xff0c;不能访问别的线程。 package com.ljq.test.thread;import java.util.HashMap; import java.util.Map; import java.util.Random;/*** 线程范围内的共享变量* * 三个模块…

Java LineNumberReader reset()方法及示例

LineNumberReader类的reset()方法 (LineNumberReader Class reset() method) reset() method is available in java.io package. reset()方法在java.io包中可用。 reset() method is used to reset this LineNumberReader stream to the position of the most recent mark was …

Html 按钮button加超链接

http://blog.csdn.net/maxracer/article/details/6409437 1.页面转向新的页面: <input type"button" οnclick"window.location.href(连接)"> 2.需要打开一个新的页面进行转向: <input type"button" οnclick"window.open(连接)&…

Java中操作Excel的3种方法,太好用了!

一、介绍在平时的业务系统开发中&#xff0c;少不了需要用到导出、导入excel功能&#xff0c;今天我们就一起来总结一下&#xff0c;如果你正为此需求感到困惑&#xff0c;那么阅读完本文&#xff0c;你一定会有所收获&#xff01;二、poi大概在很久很久以前&#xff0c;微软的…

代理服务器Tengine的研究与测试

代理服务器Tengine的研究与测试一、Tengine介绍1.首先要知道什么Nginx1)Nginx&#xff08;发音同 engine x&#xff09;是一款轻量级的Web 服务器&#xff0f;反向代理服务器及电子邮件&#xff08;IMAP/POP3&#xff09;代理服务器&#xff0c;并在一个BSD-like 协议下发行。由…

Java Integer类toString()方法与示例

Syntax: 句法&#xff1a; public String toString();public static String toString(int value);public static String toString(int value, int radixs);整数类toString()方法 (Integer class toString() method) toString() method is available in java.lang package. toS…

不错!SpringBoot发布Jar包优化瘦身指南!

概要说明随着Spring Boot的流行&#xff0c;大家体验到只需构建输出一个jar文件&#xff0c;然后只需一个java -jar命令就能部署运行应用的爽快。常见一些单体应用随着项目规模的扩展单个jar文件的大小越来越大&#xff0c;动辄两三百MB。如果再引入微服务架构&#xff0c;动辄…

Jsp中使用数据库连接池

1. 在tomcat服务器目录下面的conf中找到一个叫Context.xml的配置文件&#xff0c;在其中加入以下代码 <Resource name"jdbc/books"auth"Container" type"javax.sql.DataSource"maxActive"100"maxIdle"30"maxWait"10…

Java IdentityHashMap values()方法与示例

IdentityHashMap类values()方法 (IdentityHashMap Class values() method) values() method is available in java.util package. values()方法在java.util包中可用。 values() method is used to return the values exist in this IdentityHashMap to be viewed in a Collecti…

CountDownLatch:别浪,等人齐再团!

一入王者深似海&#xff0c;从此对象是路人。哈喽观众老爷们大家好&#xff0c;我是战神吕布字奉先&#xff0c;今天给大家来一部吕布的教学视频&#xff01;咳咳&#xff0c;不对。大家好&#xff0c;我是磊哥&#xff0c;今天给大家来一篇 CountDownLatch 的文章。在开始之前…

ASP在 Web.config 中创建数据库连接字符串

在 Web.config 中创建数据库连接串我们需要在网站的配置文件中增加一些行&#xff0c;以便 Entity Framework 知道如何连接到我们的数据库&#xff0c;双击Web.config 文件。 卷到文件的最后&#xff0c;然后增加一个 <connectionStrings> 的配置节&#xff0c;如何所示&…

easyUI layout 中使用tabs+iframe解决请求两次方法

demo中的事例在加载tab页面时是 1 function createFrame(url) {2 var s <iframe name"iframepanel" scrolling"no" frameborder"0" src" url " style"width:100%;height:100%;"></iframe>;3 …

jQuery 的选择器 元素选择器

>> 转&#xff1a;http://www.cnblogs.com/onlys/articles/jQuery.htmljQuery 的选择器可谓之强大无比&#xff0c;这里简单地总结一下常用的元素查找方法 $("#myELement") 选择id值等于myElement的元素&#xff0c;id值不能重复在文档中只能有一个id值是my…

Java FilterInputStream skip()方法与示例

FilterInputStream类skip()方法 (FilterInputStream Class skip() method) skip() method is available in java.io package. skip()方法在java.io包中可用。 skip() method is used to skip the given number of bytes of data from this FilterInputStream. skip()方法用于从…

附彩蛋|Spring Security 竟然故意延长登录时间?知道真相的我惊呆了!

2011年12月21日&#xff0c;有人在网络上公开了一个包含600万个CSDN用户资料的数据库&#xff0c;数据全部为明文储存&#xff0c;包含用户名、密码以及注册邮箱。事件发生后CSDN在微博、官方网站等渠道发出了声明&#xff0c;解释说此数据库系2009年备份所用&#xff0c;因不明…

DirectX 矩阵

基础&#xff1a; 下标&#xff1a;第一个下标为该元素所在行的索引&#xff0c;第二个下标为该元素所在列的索引。如下图所示 行向量和列向量&#xff1a;只有单行的向量称为行向量&#xff0c;只有单列的称之为列向量。 相等 维数和元素都相等 数乘(与标量相乘) 每一个元素与…

div 图片滚动 / 文字滚动

今天研究了一下图片滚动&#xff0c;网上有很多可以使用的例子&#xff0c;所以先是找了一个用的是表格布局的&#xff0c;如下&#xff1a;<!DOCTYPE html> <html xmlns"http://www.w3.org/1999/xhtml"> <head><meta http-equiv"Content-…

为什么阿里内部不允许用Executors创建线程池?

来源&#xff1a;cnblogs.com/zjfjava/p/11227456.html1. 通过Executors创建线程池的弊端在创建线程池的时候&#xff0c;大部分人还是会选择使用Executors去创建。下面是创建定长线程池&#xff08;FixedThreadPool&#xff09;的一个例子&#xff0c;严格来说&#xff0c;当使…