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 object mathematically or in other words, we can say this method is used to compare two Byte objects.

    compareTo()方法用于在数学上检查此Byte对象与给定Byte对象的相等性或不相等性,换句话说,可以说此方法用于比较两个Byte对象。

  • compareTo() 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.

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

  • compareTo() method does not throw an exception at the time of comparing Byte object.

    在比较Byte对象时, compareTo()方法不会引发异常。

Syntax:

句法:

    public int compareTo(Byte value2);

Parameter(s):

参数:

  • Byte value2 – represents the Byte object to compare with.

    字节值2 –表示要比较的字节对象。

Return value:

返回值:

The return type of this method is int, it returns an integer value based on the following cases,

此方法的返回类型为int ,它基于以下情况返回整数值:

  • It returns 0, if value1 is mathematically equal to value2.

    如果value1在数学上等于value2 ,则返回0

  • It returns the value < 0, if value1 is mathematically less than value2.

    如果value1在数学上小于value2 ,则返回值<0

  • It returns the value > 0, if value1 is mathematically greater than value2.

    如果value1在数学上大于value2 ,则返回值> 0

Example:

例:

// Java program to demonstrate the example 
// of compareTo(Byte value2) method of Byte class
public class CompareToOfByteClass {
public static void main(String[] args) {
// Variables initialization
byte b1 = 10;
byte b2 = 20;
// Byte instance 
Byte value1 = new Byte(b1);
Byte value2 = new Byte(b2);
// It compare two Byte objects and placed the result 
// in another variable (compare) of integer type
int compare = value1.compareTo(value2);
// Display result
System.out.println("value1.compareTo(value2): " + compare);
System.out.println();
if (compare == 0)
System.out.println("value1 is equal to value2");
else if (compare < 0)
System.out.println("value1 is less than value2");
else
System.out.println("value1 is greater than value2");
}
}

Output

输出量

value1.compareTo(value2): -10value1 is less than value2

翻译自: https://www.includehelp.com/java/byte-class-compareto-method-with-example.aspx

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

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

相关文章

显示照片的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…

P2P技术详解(四):P2P技术之STUN、TURN、ICE详解

目录1、内容概述2、STUN详解2.1 RFC3489/STUN2.1.1 报文结构2.1.2实现原理2.1.3STUN功能举例2.2 RFC5389/STUN2.2.1STUN用途2.2.2报文结构2.3 RFC5389与RFC3489的区别2.4 新特性介绍2.4.1指纹机制2.4.2通过DNS发现服务器机制2.4.3认证和消息完整性机制2.4.4备份服务器机制2.5 R…

比较两张大小相同的照片的差异,返回数值

比较两张大小相同的照片的差异&#xff0c;返回数值 from PIL import Image import math import operator from functools import reducedef image_contrast(img1, img2):image1 Image.open(img1)image2 Image.open(img2)h1 image1.histogram()h2 image2.histogram()resul…

poj2115C Looooops

http://poj.org/problem?id2115 参考人家的 如下 如i65534&#xff0c;当i3时&#xff0c;i1 其实就是 i(655343)%(2^16)1 有了这些思想&#xff0c;设对于某组数据要循环x次结束&#xff0c;那么本题就很容易得到方程&#xff1a; x[(B-A2^k)%2^k] /C 即 Cx(B-A)(mod 2^k) 此…

ASP.NET调用javascript脚本的常见方法小结

http://www.codesky.net/article/doc/201004/2010041706872.htm转载于:https://www.cnblogs.com/ZC_Mo-Blog/archive/2010/11/23/1885125.html

python wait方法_Python条件类| 带有示例的wait()方法

python wait方法Python Condition.wait()方法 (Python Condition.wait() Method) wait() is an inbuilt method of the Condition class of the threading module in Python. wait()是Python中线程模块的Condition类的内置方法。 Condition class implements condition variab…

return编程python_python3 第二十一章 - 函数式编程之return函数和闭包

我们来实现一个可变参数的求和。通常情况下&#xff0c;求和的函数是这样定义的&#xff1a;def calc_sum(*args):ax0for n inargs:ax ax nreturn ax但是&#xff0c;如果不需要立刻求和&#xff0c;而是在后面的代码中&#xff0c;根据需要再计算怎么办&#xff1f;可以不返回…

黑色背景下,计算照片白色的区域面积和周长

黑色背景下&#xff0c;计算照片白色的区域面积和周长 import cv2 img cv2.imread(E:\Python-workspace\OpenCV\OpenCV/beyond.png,1)#第一个参数为选择照片的路径&#xff0c;注意照片路径最后一个为正斜杠其他都为反斜杠&#xff1b;第二个参数&#xff0c;其中1表示所选照…

php连接mssql数据库的几种方式

数据库查询不外乎4个步骤&#xff0c;1、建立连接。2、输入查询代码。3、建立查询并取出数据。4、关闭连接。 php连接mssql数据库有几个注意事项&#xff0c;尤其mssql的多个版本、32位、64位都有区别。 首先&#xff0c;php.ini文件中;extensionphp_pdo_mssql.dll ;extensionp…

通俗易懂:快速理解P2P技术中的NAT穿透原理

目录1、基础知识1.1、什么是NAT&#xff1f;1.2、为什么会有NAT&#xff1f;1.3、NAT有什么优缺点&#xff1f;2、NAT的实现方式2.1、静态NAT2.2、NAPT3、NAT的主要类型3.1、完全锥型NAT&#xff08;Full Cone NAT&#xff0c;后面简称FC&#xff09;3.2、受限锥型NAT&#xff…

duration java_Java Duration类| toNanos()方法与示例

duration javaDuration Class toNanos()方法 (Duration Class toNanos() method) toNanos() method is available in java.time package. toNanos()方法在java.time包中可用。 toNanos() method is used to convert this Duration into the number of nanoseconds. toNanos()方…