Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: Comparison int and Integer

  1. #1
    Junior Member
    Join Date
    Dec 2017
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Comparison int and Integer

    Hi,
    I'm beginner in Java and traying to campare 2 types: int and Integer. There is a code:

    class validateIntAndInteger
    {
    public boolean validateIntAndInteger (int number1, Integer number2) {
    if(number1 == number2) {
    System.out.println("Numbers are equals.");
    } else {
    System.out.println("Numbers are not equals.");
    }
    }
    }
    class Application
    {
    public static void main (String[] args) throws java.lang.Exception
    {
    int number1 = 2;
    Integer number2 = 4;

    validateIntAndInteger personCheck = new validateIntAndInteger();{
    personCheck.validateIntAndInteger( number1, number2 );
    }
    }
    }

    But there is a error: missing return statement, line 9
    I don't know why?
    Anyone can help?
    Thank You

  2. #2
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: Comparison int and Integer

    missing return statement, line 9
    If a method is defined to return a value, then the method must have return statement(s) that return a value of the type used in the method's definition.
    Add a return statement at line 9.
    Or change the method's definition so it does not return a value.

    Please edit your post and wrap your code with code tags:

    [code]
    **YOUR CODE GOES HERE**
    [/code]

    to get highlighting and preserve formatting.
    If you don't understand my answer, don't ignore it, ask a question.

Similar Threads

  1. Bug in Java ?? substring( int x, int y)
    By cheringalho in forum What's Wrong With My Code?
    Replies: 2
    Last Post: May 19th, 2013, 10:51 AM
  2. Java int comparison
    By maple1100 in forum What's Wrong With My Code?
    Replies: 9
    Last Post: March 3rd, 2013, 07:45 PM
  3. How to create an Int or double of what the user types int a JTextField?
    By Speedstack79 in forum Object Oriented Programming
    Replies: 2
    Last Post: January 13th, 2013, 11:00 PM
  4. List methods add(int k, Data data), set(int k, Data data), remove(int k)
    By Enirox in forum Object Oriented Programming
    Replies: 3
    Last Post: September 20th, 2012, 06:43 AM
  5. int and Integer
    By chronoz13 in forum Java Theory & Questions
    Replies: 5
    Last Post: December 31st, 2009, 03:20 AM