java 方法 示例_带有示例的Java EnumSetSupplementOf()方法

java 方法 示例

EnumSet类complementOf()方法 (EnumSet Class complementOf() method)

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

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

  • complementOf() method is used to contain all the elements of this EnumSet that are complement in the given EnumSet.

    clipartOf()方法用于包含此EnumSet的所有元素,这些元素在给定的EnumSet中是互补的。

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

    complementOf()方法是一个静态方法,可以使用类名进行访问,如果尝试使用类对象访问该方法,则不会出错。

  • complementOf() method may throw an exception at the time of returning complement EnumSet.

    在返回补码EnumSet时, complementOf()方法可能会引发异常。

    NullPointerException: This exception may throw when the given parameter is null exists.

    NullPointerException :当给定参数为null时,可能引发此异常。

Syntax:

句法:

    public static EnumSet complementOf(EnumSet es);

Parameter(s):

参数:

  • EnumSet es – represents the another enum set from whose complement to assign this enum set.

    EnumSet es –表示另一个枚举集,从该枚举的补码中分配该枚举集。

Return value:

返回值:

The return type of this method is EnumSet, it returns complement enum set of the given enum set.

此方法的返回类型为EnumSet ,它返回给定枚举集的互补枚举集。

Example:

例:

// Java program is to demonstrate the example of
// complementOf(EnumSet es) method of EnumSet
import java.util.*;
public class ComplementOfEnumSet {
// Initialize a enum variable
// with some constants
public enum Colors {
RED,
BLUE,
GREEN,
PURPLE,
YELLOW
};
public static void main(String[] args) {
// Here , we are creating two EnumSet
// First EnumSet is intiatize with some 
// values and Second EnumSet is empty
EnumSet < Colors > es = EnumSet.of(Colors.PURPLE);
EnumSet < Colors > complement_es = null;
// Display EnumSet
System.out.println("EnumSet (es): " + es);
// By using complementOf() method is to 
// contain all of the elements that does
// not exists in the given EnumSet es
complement_es = EnumSet.complementOf(es);
// Display EnumSet
System.out.println("EnumSet.complementOf(es): " + complement_es);
}
}

Output

输出量

EnumSet (es): [PURPLE]
EnumSet.complementOf(es): [RED, BLUE, GREEN, YELLOW]

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

java 方法 示例

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

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

相关文章

在需要时开启Perl新特性

从5.10开始&#xff0c;新特性必须开启才能使用。Perl默认不启用新特性保持向后兼容。 如果想启用新特性&#xff0c;可以使用新的-E开关。打开所有的新特性。 % perl5.10.1 -E say.pl #开启5.10.1 版本的所有新特性 在源代码中使用 use 指令之后指定perl版本号就可以了。 use …

P2P技术详解(一):NAT详解——详细原理、P2P简介

目录1. IPv4协议和NAT的由来2. NAT的工作模型和特点2.1、NAT的概念模型2.2、一对一的NAT2.3、一对多的NAT2.4、按照NAT端口映射方式分类2.4.1全锥形NAT2.4.2限制锥形NAT2.4.3端口限制锥形NAT2.4.4对称型NAT3. NAT的限制与解决方案3.1、IP端到端服务模型3.2、NAT的弊端3.3、NAT穿…

决定孩子命运的八大关键问题

你可以不是天才&#xff0c;但你可以是天才的父母&#xff01;树立做父母正确的家庭教育观念&#xff0c;为孩子建造一个良好的人生平台&#xff0c;让孩子有很好的人格修养&#xff0c;懂得做人&#xff0c;懂得成功的真正含义。简单方便&#xff0c;容易操作&#xff0c;适合…

java calendar_Java Calendar internalGet()方法与示例

java calendar日历类internalGet()方法 (Calendar Class internalGet() method) internalGet() method is available in java.util package. internalGet()方法在java.util包中可用。 internalGet() method is used to get the value of the given field(fi) of this Calendar …

显示照片的二维直方图

显示照片的二维直方图 import cv2 from matplotlib import pyplot as plt img cv2.imread(E:\Python-workspace\OpenCV\OpenCV/water1.png,1)#第一个参数为选择照片的路径&#xff0c;注意照片路径最后一个为正斜杠其他都为反斜杠&#xff1b;第二个参数&#xff0c;其中1表示…

周五怎么表示 mysql_完美起航-MySQL找每个月最后一个星期五--函数定义与使用

数据库作业有一道题是这样子的&#xff1a;有一张名叫emp的表记录员工信息&#xff0c;其中有如下字段 HIREDATE 表示员工被雇用的日期&#xff1a;然后问题是这样的&#xff1a;q7.Show details of employee hiredates and the date of their first payday.(Paydays occur on…

要想能安心,必须先死心。

其实&#xff0c;不论是感情&#xff0c;还是学习、工作还是生活&#xff0c;不都是如此&#xff1f;曾经年少怀抱一个名校梦&#xff0c;如果高考不成功&#xff0c;那么你一定会选择考研让自己死一次心&#xff1b;小时候特别喜欢 某个职业&#xff0c;长大了你抛弃所有机会追…

silverlight学习总结【完】

以下内容是个人理解&#xff0c;不保证正确性。且假设使用C#&#xff0c;并且有一定的相关知识和XML基础。 silverlight是什么&#xff0c;能做什么 silverlight用XAML来做前端界面&#xff0c;用.NET或者JS作为程序脚本支持&#xff0c;在浏览器内外运行的应用。可以认为和FLA…

P2P技术详解(二):P2P中的NAT穿越(打洞)方案详解

目录1、内容概述2、反向链接技术&#xff1a;一种特殊的P2P场景&#xff08;通信双方中只有一方位于NAT设备之后&#xff09;3、基于UDP协议的P2P打洞技术详解3.1、原理概述3.2、典型P2P情景1&#xff1a; 两客户端位于同一NAT设备后面&#xff08;即相同内网中&#xff09;3.3…

Java Byte类的compareTo()方法和示例

简短的类compareTo()方法 (Short class compareTo() method) compareTo() method is available in java.lang package. compareTo()方法在java.lang包中可用。 compareTo() method is used to check equality or inequality for this Byte object against the given Byte objec…

显示照片的RGB直方图

显示照片的RGB直方图 import numpy as np import cv2 as cv from matplotlib import pyplot as plt img cv.imread(E:\Python-workspace\OpenCV\OpenCV/BEYOND.png,1)#第一个参数为选择照片的路径&#xff0c;注意照片路径最后一个为正斜杠其他都为反斜杠&#xff1b;第二个参…

OUT还开通博客!

现在哪有人还在玩博客哦&#xff0c;哎试试&#xff0c;记录一下自己开发网站的点滴吧&#xff01;转载于:https://www.cnblogs.com/17say/archive/2013/02/18/2915125.html

网站V5的一些想法(转)

V5即将到来&#xff0c;面对“全新”的V5&#xff0c;前端这块自然也要借这次改版的机会&#xff0c;将我们前端的一些想法实践到V5中去&#xff0c;实现一次跨越。 1 尝试模块化的代码书写(html、css等) 模块化的目的是为了提高代码的重用性、扩展性、可维护性 2 文件引用使用…

mysql慢查询开启语句分析_mysql慢查询语句分析总结

我们经常会接触到MySQL&#xff0c;也经常会遇到一些MySQL的性能问题。我们可以借助慢查询日志和explain命令初步分析出SQL语句存在的性能问题通过SHOW FULL PROCESSLIST查看问题SHOW FULL PROCESSLIST相当于select * from information_schema.processlist可以列出正在运行的连…

P2P技术详解(三):P2P中的NAT穿越(打洞)方案详解(进阶分析篇)

目录1、NAT和NAPT2、NAT带来的问题3、P2P通信穿越NAT的技术、方法4、NAT穿越技术1&#xff1a;应用层网关4.1、原理4.2、限制5、NAT穿越技术2&#xff1a;中间件技术5.1、原理5.2、限制6、NAT穿越技术3&#xff1a;打洞技术(Hole Punching)6.1、原理6.2、方法6.2.1NAT行为类型与…

Java BufferedReader reset()方法及示例

BufferedReader类的reset()方法 (BufferedReader Class reset() method) reset() method is available in java.io package. reset()方法在java.io包中可用。 reset() method is used to reset the stream to the most recent mark of this stream. reset()方法用于将流重置为该…

将两大小完全相同的照片进行加权混合对比

将两张大小完全相同的照片进行加权混合对比 import cv2 img1cv2.imread(E:\Python-workspace\OpenCV\OpenCV/water1.png,1)#第一个参数为选择照片的路径&#xff0c;注意照片路径最后一个为正斜杠其他都为反斜杠&#xff1b;第二个参数&#xff0c;其中1表示所选照片为彩色照片…

过了很久了

很久没来这里了&#xff0c;一般也就找找资料会上一下子。差不多算是荒废了吧 不要紧&#xff0c;开始写了转载于:https://www.cnblogs.com/Anykong/archive/2013/02/18/2916333.html

古文中惊艳的句子

-1】终于为那一身江南烟雨覆了天下&#xff0c;容华谢后&#xff0c;不过一场&#xff0c;山河永寂。-2】千秋功名&#xff0c;一世葬你&#xff0c;玲珑社稷&#xff0c;可笑却无君王命。-3】凤凰台上凤凰游&#xff0c;负约而去&#xff0c;一夜苦等&#xff0c;从此江南江北…

java 方法 示例_Java ArrayDeque pollFirst()方法与示例

java 方法 示例ArrayDeque类pollFirst()方法 (ArrayDeque Class pollFirst() method) pollFirst() Method is available in java.lang package. pollFirst()方法在java.lang包中可用。 pollFirst() Method is used to return the first element of the queue denoted by this d…