Convert byte to Byte object Example /*   Convert byte to Byte object Example   This example shows how a byte primitive v...

Convert byte to Byte object Example

03:13 PASSOVE INCOME 0 Comments

Convert byte to Byte object Example

  1. /*
  2.   Convert byte to Byte object Example
  3.   This example shows how a byte primitive value can be converted to Byte object
  4. */
  5. public class byteToByteExample {
  6.   public static void main(String[] args) {
  7.     byte i = 10;
  8.    
  9.     /*
  10.     Use Byte constructor to convert byte primitive type to Byte object.
  11.     */
  12.    
  13.     Byte bObj = new Byte(i);
  14.     System.out.println(bObj);
  15.    
  16.   }
  17. }
  18. /*
  19. Output of the program would be
  20. 10
  21. */

0 comments: