Java - Short Class reverseBytes() Method

Short class reverseBytes() method: Here, we are going to learn about the reverseBytes() method of Short class with its syntax and example. By Preeti Jain Last updated : March 18, 2024

Short class reverseBytes() method

  • reverseBytes() method is available in java.lang package.
  • reverseBytes() method is used to returns the value generated by reversing the order of bytes in binary 2's complement denotation of the given argument.
  • reverseBytes() method is a static method, it is accessible with the class name too and if we try to access the method with the class object then also we will not get an error.
  • reverseBytes() method does not throw an exception at the time of reversing the order of bytes.

Syntax

public static short reverseBytes (short value);

Parameters

  • short value – represents the short value to be parsed in bytes.

Return Value

The return type of this method is Short, it returns a short value generated by reversing the bytes order in 2's complement of the given short value.

Example

// Java program to demonstrate the example 
// of reverseBytes(short value) method of Short class

public class ReverseBytesOfShortClass {
    public static void main(String[] args) {
        short value = 1296;

        // Display value
        System.out.println("value: " + value);

        // It returns the value generated by reversing 
        // the order of the bytes in the given argument value 
        // by calling Short.reverseBytes(value)
        System.out.println("Short.reverseBytes(value): " + Short.reverseBytes(value));
    }
}

Output

value: 1296
Short.reverseBytes(value): 4101

Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.