Byte: toString(byte b) : Byte « java.lang « Java by API
- Java by API
- java.lang
- Byte
Byte: toString(byte b)
public class Main {
public static void main(String[] args) {
byte b = 65;
System.out.println(Byte.toString(b));
}
}
Related examples in the same category