Java int keyword example
- Details
 - Written by Nam Ha Minh
 - Last Updated on 19 August 2019   |   Print Email
 
In Java, the int keyword is used to declared a variable as a numeric type. An int value can hold a 32-bit integer number which ranges from -231 to 231 - 1. For example:
int childCount;
The int keyword can be used to declared return type of a method as well:
public int getChildCount() {
    return 10;
}See all keywords in Java.
Related Topics:
Other Recommended Tutorials:
- 9 Rules about Constructors in Java
 - 12 Rules and Examples About Inheritance in Java
 - 12 Rules of Overriding in Java You Should Know
 - 10 Java Core Best Practices Every Java Programmer Should Know
 - Understand Interfaces in Java
 - Understand how variables are passed in Java
 - Understand encapsulation in Java
 
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.
Comments