Core Java

Java puzzlers from OCA part 5

In the fifth part of the Java Puzzlers series, we will see something related to X.parseX(String s) methods.

You can see what we expect from X.parseX() methods.

1
2
3
4
5
6
7
8
9
public class Puzzler {
 
    public static void main(String[] args){
        int i = Integer.parseInt("2");
        System.out.println(i); // prints 2
 
 
    }
}

We give the methods a String that can be converted to the primitive representation and hope for the best. Now lets check another example which will give us a NumberFormatException.

1
2
3
4
5
6
public class Puzzler {
 
    public static void main(String[] args){
        int i = Integer.parseInt("integer"); // java.lang.NumberFormatException: For input string: "integer"
    }
}

As the input is a word and not something that can be parsed to an integer, we get NumberFormatException. What happens above is consistent for each number type. So Integer, Byte, Short, Long, Double, Float won’t surprise you when you call their parse methods with some random String. You’ll get a NumberFormatException.

Now lets check what happens with boolean.

1
2
3
4
5
6
7
8
9
public class Puzzler {
 
    public static void main(String[] args){
        final boolean b1 = Boolean.parseBoolean("boolean?");
        System.out.println(b1);
 
    
    }
}

Can you guess what happens? The parse call will probably throw java.lang.BooleanFormatException, right? Not really. If you run that, it’ll print “false” to the screen. The reason is Boolean.parseBoolean() just accepts anything and if it can’t parse it, it just returns “false” value. Now lets see the other example.

1
2
3
4
5
6
7
public class Puzzler {
 
    public static void main(String[] args){
        final boolean b2 = Boolean.parseBoolean("TrUe");
        System.out.println(b2);
    }
}

You probably expect false again? That’s not the case because parseBoolean is case insensitive and will return “true” in this case.

Published on Java Code Geeks with permission by Sezin Karli, partner at our JCG program. See the original article here: java puzzlers from oca part 5

Opinions expressed by Java Code Geeks contributors are their own.

Do you want to know how to develop your skillset to become a Java Rockstar?
Subscribe to our newsletter to start Rocking right now!
To get you started we give you our best selling eBooks for FREE!
1. JPA Mini Book
2. JVM Troubleshooting Guide
3. JUnit Tutorial for Unit Testing
4. Java Annotations Tutorial
5. Java Interview Questions
6. Spring Interview Questions
7. Android UI Design
and many more ....
I agree to the Terms and Privacy Policy

Sezin Karli

Mathematics Engineer & Computer Scientist with a passion for software development. Avid learner for new technologies. Currently working as Senior Software Engineer at Sahibinden.com.
Subscribe
Notify of
guest


This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Back to top button