当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Byte compare()用法及代码示例


Byte类的compare()方法是Java中的一种内置方法,用于比较两个字节值。

用法

Byte.compare(byte a, byte b)

参数:它在要比较的参数中采用两个字节的值“ a”和“ b”作为输入。


返回值:它返回一个int值。它返回:

  • 如果'a等于'b,则为0,
  • 正值“ a”大于“ b”,
  • 负值“ b”大于“ a”

下面是Java中compare()方法的实现:

示例1:

// Java code to demonstrate 
// Byte compare() method 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        // byte value 'a' 
        byte a = 20; 
  
        // byte value 'b' 
        byte b = 20; 
  
        // compare method of Byte class 
        int output = Byte.compare(a, b); 
  
        // printing the output 
        System.out.println("Comparing " + a 
                           + " and " + b + " : "
                           + output); 
    } 
}
输出:
Comparing 20 and 20 : 0

示例2:

// Java code to demonstrate 
// Byte compare() method 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        // byte value 'a' 
        byte a = 20; 
  
        // byte value 'b' 
        byte b = 10; 
  
        // compare method of Byte class 
        int output = Byte.compare(a, b); 
  
        // printing the output 
        System.out.println("Comparing " + a 
                           + " and " + b + " : "
                           + output); 
    } 
}
输出:
Comparing 20 and 10 : 10

示例3:

// Java code to demonstrate 
// Byte compare() method 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        // byte value 'a' 
        byte a = 10; 
  
        // byte value 'b' 
        byte b = 20; 
  
        // compare method of Byte class 
        int output = Byte.compare(a, b); 
  
        // printing the output 
        System.out.println("Comparing " + a 
                           + " and " + b + " : "
                           + output); 
    } 
}
输出:
Comparing 10 and 20 : -10


相关用法


注:本文由纯净天空筛选整理自ShivamKD大神的英文原创作品 Byte compare() method in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。