- Details
- Written by Nam Ha Minh
- Last Updated on 19 August 2019   |   Print Email
In Java, the byte keyword is used to declared a variable as a numeric type. A byte value can hold an 8-bit integer number which ranges from -128 to 127. For example:
byte month = 6;
The byte keyword can be used to declared return type of a method as well:
public byte getMonth() {
return 12;
}
See all keywords in Java.
Related Topics:
Other Recommended Tutorials:
About the Author:
Nam Ha Minh is certified Java programmer (SCJP and SCWCD). He began programming with Java back in the days of Java 1.4 and has been passionate about it ever since. You can connect with him on
Facebook and watch
his Java videos on YouTube.