Home » Java Byte toString() Method

Java Byte toString() Method

by Online Tutorials Library

Java Byte toString() method

The toString() method of Java Byte class returns a String value represented by this Byte or by the specified byte ‘b’.

Syntax:

Parameters:

The parameter ‘b’ represents a byte value.

Overrides

This method overrides toString in class Object

Return Value

This method returns a string representation of the byte value.

Example 1

Test it Now

Output:

String value : 98  String value : 102  

Example 2

Test it Now

Output:

Reverse string : 011  

Example 3

Test it Now

Output:

-1  

Next TopicJava Byte

You may also like