
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Convert Integer to Boolean in Java
To convert integer to boolean, firstly let us initialize an integer.
int val = 100;
Now we will declare a variable with primitive boolean. While declaration, we will initialize it with the val value comparing it with an integer using the == operator. If the value matches, the value “True” is returned, else “False” is returned.
boolean bool = (val == 100);
Let us now see the complete example displaying how to convert integer to boolean.
Example
public class Demo { public static void main(String[] args) { int val = 100; System.out.println("Integer: "+val); boolean bool = (val == 100); System.out.println("Converted to Bool: "+bool); } }
Output
Integer: 100 Converted to Bool: true
Advertisements