Validating user inputValidating a userFinding potential thread safety issues and race conditions in my...

Does this AnyDice function accurately calculate the number of ogres you make unconcious with three 4th-level castings of Sleep?

Did CPM support custom hardware using device drivers?

PTIJ: Who should pay for Uber rides: the child or the parent?

What is the greatest age difference between a married couple in Tanach?

RegionDifference for Cylinder and Cuboid

Identifying the interval from A♭ to D♯

Pinhole Camera with Instant Film

Do I need life insurance if I can cover my own funeral costs?

What does it mean to make a bootable LiveUSB?

Old race car problem/puzzle

The use of "touch" and "touch on" in context

Why doesn't the EU now just force the UK to choose between referendum and no-deal?

Happy pi day, everyone!

How to deal with taxi scam when on vacation?

Why is "das Weib" grammatically neuter?

How to deal with a cynical class?

Russian cases: A few examples, I'm really confused

It's a yearly task, alright

Possible Leak In Concrete

Good allowance savings plan?

When do we add an hyphen (-) to a complex adjective word?

Science-fiction short story where space navy wanted hospital ships and settlers had guns mounted everywhere

How to make healing in an exploration game interesting

Brexit - No Deal Rejection



Validating user input


Validating a userFinding potential thread safety issues and race conditions in my multithreading codeScrubbing user inputValidating input against rulesDriver license program which grades an individual's responsesValidating input values in C#Validating integer or string inputValidating user input in C# coming from XAML controlsValidating input variablesValidating proper input













4












$begingroup$


I've written the below code to validate user input but I feel it's quite excessive for what seems to be a simple operation. I want to only accept non-negative integers or doubles as an input. This block of code is required three times in my program so I will need to put it into a method or something but in the mean time is there a simpler way to validate user input?



    Scanner input = new Scanner(System.in);

boolean validWidth = false;
double width = 0.0;;

do // do while runs until the input is validated
{
System.out.print("Enter width: ");
if (input.hasNextInt()) // we accept an int
{
width = input.nextInt();
if (width > 0) // we accept a non-negative
{
validWidth = true;
}
else // refuse a negative
{
System.out.println("Input error. Try again.");
validWidth = false;
}
}
else if (input.hasNextDouble())// accept a double
{
width = input.nextDouble();
if (width > 0) // we accept a non-negative
{
validWidth = true;
}
else // and refuse a negative
{
System.out.println("Input error. Try again.");
validWidth = false;
}
}
else
{
System.out.println("Input error. Try again.");
validInput = false;
input.next();
}
} while (!(validWidth));









share|improve this question









New contributor




PerfectContrast is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.







$endgroup$












  • $begingroup$
    Welcome to Code Review. Unfortunately, your code is missing some important context, for example input's type, how it's initialized, and the declarations of the other variables. Keep in mind that It's fine to drop a lot of code here, as long as you properly explain it beforehand.
    $endgroup$
    – Zeta
    5 hours ago










  • $begingroup$
    Sorry, I have added those now.
    $endgroup$
    – PerfectContrast
    5 hours ago










  • $begingroup$
    Perfect, thanks. I hope that one of the Java devs will review your code soon.
    $endgroup$
    – Zeta
    5 hours ago
















4












$begingroup$


I've written the below code to validate user input but I feel it's quite excessive for what seems to be a simple operation. I want to only accept non-negative integers or doubles as an input. This block of code is required three times in my program so I will need to put it into a method or something but in the mean time is there a simpler way to validate user input?



    Scanner input = new Scanner(System.in);

boolean validWidth = false;
double width = 0.0;;

do // do while runs until the input is validated
{
System.out.print("Enter width: ");
if (input.hasNextInt()) // we accept an int
{
width = input.nextInt();
if (width > 0) // we accept a non-negative
{
validWidth = true;
}
else // refuse a negative
{
System.out.println("Input error. Try again.");
validWidth = false;
}
}
else if (input.hasNextDouble())// accept a double
{
width = input.nextDouble();
if (width > 0) // we accept a non-negative
{
validWidth = true;
}
else // and refuse a negative
{
System.out.println("Input error. Try again.");
validWidth = false;
}
}
else
{
System.out.println("Input error. Try again.");
validInput = false;
input.next();
}
} while (!(validWidth));









share|improve this question









New contributor




PerfectContrast is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.







$endgroup$












  • $begingroup$
    Welcome to Code Review. Unfortunately, your code is missing some important context, for example input's type, how it's initialized, and the declarations of the other variables. Keep in mind that It's fine to drop a lot of code here, as long as you properly explain it beforehand.
    $endgroup$
    – Zeta
    5 hours ago










  • $begingroup$
    Sorry, I have added those now.
    $endgroup$
    – PerfectContrast
    5 hours ago










  • $begingroup$
    Perfect, thanks. I hope that one of the Java devs will review your code soon.
    $endgroup$
    – Zeta
    5 hours ago














4












4








4





$begingroup$


I've written the below code to validate user input but I feel it's quite excessive for what seems to be a simple operation. I want to only accept non-negative integers or doubles as an input. This block of code is required three times in my program so I will need to put it into a method or something but in the mean time is there a simpler way to validate user input?



    Scanner input = new Scanner(System.in);

boolean validWidth = false;
double width = 0.0;;

do // do while runs until the input is validated
{
System.out.print("Enter width: ");
if (input.hasNextInt()) // we accept an int
{
width = input.nextInt();
if (width > 0) // we accept a non-negative
{
validWidth = true;
}
else // refuse a negative
{
System.out.println("Input error. Try again.");
validWidth = false;
}
}
else if (input.hasNextDouble())// accept a double
{
width = input.nextDouble();
if (width > 0) // we accept a non-negative
{
validWidth = true;
}
else // and refuse a negative
{
System.out.println("Input error. Try again.");
validWidth = false;
}
}
else
{
System.out.println("Input error. Try again.");
validInput = false;
input.next();
}
} while (!(validWidth));









share|improve this question









New contributor




PerfectContrast is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.







$endgroup$




I've written the below code to validate user input but I feel it's quite excessive for what seems to be a simple operation. I want to only accept non-negative integers or doubles as an input. This block of code is required three times in my program so I will need to put it into a method or something but in the mean time is there a simpler way to validate user input?



    Scanner input = new Scanner(System.in);

boolean validWidth = false;
double width = 0.0;;

do // do while runs until the input is validated
{
System.out.print("Enter width: ");
if (input.hasNextInt()) // we accept an int
{
width = input.nextInt();
if (width > 0) // we accept a non-negative
{
validWidth = true;
}
else // refuse a negative
{
System.out.println("Input error. Try again.");
validWidth = false;
}
}
else if (input.hasNextDouble())// accept a double
{
width = input.nextDouble();
if (width > 0) // we accept a non-negative
{
validWidth = true;
}
else // and refuse a negative
{
System.out.println("Input error. Try again.");
validWidth = false;
}
}
else
{
System.out.println("Input error. Try again.");
validInput = false;
input.next();
}
} while (!(validWidth));






java validation






share|improve this question









New contributor




PerfectContrast is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




PerfectContrast is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 5 hours ago







PerfectContrast













New contributor




PerfectContrast is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 5 hours ago









PerfectContrastPerfectContrast

235




235




New contributor




PerfectContrast is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





PerfectContrast is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






PerfectContrast is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












  • $begingroup$
    Welcome to Code Review. Unfortunately, your code is missing some important context, for example input's type, how it's initialized, and the declarations of the other variables. Keep in mind that It's fine to drop a lot of code here, as long as you properly explain it beforehand.
    $endgroup$
    – Zeta
    5 hours ago










  • $begingroup$
    Sorry, I have added those now.
    $endgroup$
    – PerfectContrast
    5 hours ago










  • $begingroup$
    Perfect, thanks. I hope that one of the Java devs will review your code soon.
    $endgroup$
    – Zeta
    5 hours ago


















  • $begingroup$
    Welcome to Code Review. Unfortunately, your code is missing some important context, for example input's type, how it's initialized, and the declarations of the other variables. Keep in mind that It's fine to drop a lot of code here, as long as you properly explain it beforehand.
    $endgroup$
    – Zeta
    5 hours ago










  • $begingroup$
    Sorry, I have added those now.
    $endgroup$
    – PerfectContrast
    5 hours ago










  • $begingroup$
    Perfect, thanks. I hope that one of the Java devs will review your code soon.
    $endgroup$
    – Zeta
    5 hours ago
















$begingroup$
Welcome to Code Review. Unfortunately, your code is missing some important context, for example input's type, how it's initialized, and the declarations of the other variables. Keep in mind that It's fine to drop a lot of code here, as long as you properly explain it beforehand.
$endgroup$
– Zeta
5 hours ago




$begingroup$
Welcome to Code Review. Unfortunately, your code is missing some important context, for example input's type, how it's initialized, and the declarations of the other variables. Keep in mind that It's fine to drop a lot of code here, as long as you properly explain it beforehand.
$endgroup$
– Zeta
5 hours ago












$begingroup$
Sorry, I have added those now.
$endgroup$
– PerfectContrast
5 hours ago




$begingroup$
Sorry, I have added those now.
$endgroup$
– PerfectContrast
5 hours ago












$begingroup$
Perfect, thanks. I hope that one of the Java devs will review your code soon.
$endgroup$
– Zeta
5 hours ago




$begingroup$
Perfect, thanks. I hope that one of the Java devs will review your code soon.
$endgroup$
– Zeta
5 hours ago










1 Answer
1






active

oldest

votes


















3












$begingroup$

You are distinguishing between hasNextInt() and hasNextDouble() in the input stream, but treating them identically afterwards. hasNextDouble() will return true if the next token is an integer, because integers can be successfully parsed as a double too.



So your loop could be simplified into:



double width = 0.0;

for(;;) {
System.out.print("Enter width: ");
if (input.hasNextDouble()) {
width = input.nextDouble();
if (width > 0)
break;
}
System.out.println("Input error. Try again.");
input.nextLine();
}


A few notes:




  • The unnecessary validWidth variable has been removed. A break statement exits the infinite for(;;) loop, skipping over the "cleanup, try again" code.


  • .nextLine() is used to cleanup after invalid input. This is important, because if the user enters "one fish two fish red fish blue fish" instead of say -12, your current approach will print out "Input error. Try again" 8 times. Using .nextLine() discards everything up to and including the new line character. Which brings us to zero and negative numbers. If the user enters a valid integer/double, but not a positive one, your code didn't skip any tokens, where as my code (as mentioned above) will skip the remaining input up to and including the new line character. Assuming the next character was a new line (as in the user entered -12 and pressed the return key) the following .hasNextDouble() will skip over the new line (and any other blank space) looking for the next token, so the effect is approximately the same.


  • But my code performs differently if the user enters red 5. You original code will print "Invalid input. Try again.", and then immediately consume the 5 as valid input, where as my code will discard the remainder of the line, and wait for the user to enter another line.



Since you are using the code multiple places, putting it into a method is prudent. Here is one using a DoublePredicate functional interface in order to validate the input according to the caller's requirements:



double getDouble(Scanner input, String prompt, DoublePredicate validate) {
double value = 0.0;

for(;;) {
System.out.print(prompt);
if (input.hasNextDouble()) {
value = input.nextDouble();
if (validate.test(value))
return value;
}
System.out.println("Input error. Try again.");
input.nextLine();
}
}


Which you could use with a lambda function like:



    double width = getDouble(input, "Enter width: ", x -> x > 0);





share|improve this answer









$endgroup$













    Your Answer





    StackExchange.ifUsing("editor", function () {
    return StackExchange.using("mathjaxEditing", function () {
    StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
    StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["\$", "\$"]]);
    });
    });
    }, "mathjax-editing");

    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "196"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });






    PerfectContrast is a new contributor. Be nice, and check out our Code of Conduct.










    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f215452%2fvalidating-user-input%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    3












    $begingroup$

    You are distinguishing between hasNextInt() and hasNextDouble() in the input stream, but treating them identically afterwards. hasNextDouble() will return true if the next token is an integer, because integers can be successfully parsed as a double too.



    So your loop could be simplified into:



    double width = 0.0;

    for(;;) {
    System.out.print("Enter width: ");
    if (input.hasNextDouble()) {
    width = input.nextDouble();
    if (width > 0)
    break;
    }
    System.out.println("Input error. Try again.");
    input.nextLine();
    }


    A few notes:




    • The unnecessary validWidth variable has been removed. A break statement exits the infinite for(;;) loop, skipping over the "cleanup, try again" code.


    • .nextLine() is used to cleanup after invalid input. This is important, because if the user enters "one fish two fish red fish blue fish" instead of say -12, your current approach will print out "Input error. Try again" 8 times. Using .nextLine() discards everything up to and including the new line character. Which brings us to zero and negative numbers. If the user enters a valid integer/double, but not a positive one, your code didn't skip any tokens, where as my code (as mentioned above) will skip the remaining input up to and including the new line character. Assuming the next character was a new line (as in the user entered -12 and pressed the return key) the following .hasNextDouble() will skip over the new line (and any other blank space) looking for the next token, so the effect is approximately the same.


    • But my code performs differently if the user enters red 5. You original code will print "Invalid input. Try again.", and then immediately consume the 5 as valid input, where as my code will discard the remainder of the line, and wait for the user to enter another line.



    Since you are using the code multiple places, putting it into a method is prudent. Here is one using a DoublePredicate functional interface in order to validate the input according to the caller's requirements:



    double getDouble(Scanner input, String prompt, DoublePredicate validate) {
    double value = 0.0;

    for(;;) {
    System.out.print(prompt);
    if (input.hasNextDouble()) {
    value = input.nextDouble();
    if (validate.test(value))
    return value;
    }
    System.out.println("Input error. Try again.");
    input.nextLine();
    }
    }


    Which you could use with a lambda function like:



        double width = getDouble(input, "Enter width: ", x -> x > 0);





    share|improve this answer









    $endgroup$


















      3












      $begingroup$

      You are distinguishing between hasNextInt() and hasNextDouble() in the input stream, but treating them identically afterwards. hasNextDouble() will return true if the next token is an integer, because integers can be successfully parsed as a double too.



      So your loop could be simplified into:



      double width = 0.0;

      for(;;) {
      System.out.print("Enter width: ");
      if (input.hasNextDouble()) {
      width = input.nextDouble();
      if (width > 0)
      break;
      }
      System.out.println("Input error. Try again.");
      input.nextLine();
      }


      A few notes:




      • The unnecessary validWidth variable has been removed. A break statement exits the infinite for(;;) loop, skipping over the "cleanup, try again" code.


      • .nextLine() is used to cleanup after invalid input. This is important, because if the user enters "one fish two fish red fish blue fish" instead of say -12, your current approach will print out "Input error. Try again" 8 times. Using .nextLine() discards everything up to and including the new line character. Which brings us to zero and negative numbers. If the user enters a valid integer/double, but not a positive one, your code didn't skip any tokens, where as my code (as mentioned above) will skip the remaining input up to and including the new line character. Assuming the next character was a new line (as in the user entered -12 and pressed the return key) the following .hasNextDouble() will skip over the new line (and any other blank space) looking for the next token, so the effect is approximately the same.


      • But my code performs differently if the user enters red 5. You original code will print "Invalid input. Try again.", and then immediately consume the 5 as valid input, where as my code will discard the remainder of the line, and wait for the user to enter another line.



      Since you are using the code multiple places, putting it into a method is prudent. Here is one using a DoublePredicate functional interface in order to validate the input according to the caller's requirements:



      double getDouble(Scanner input, String prompt, DoublePredicate validate) {
      double value = 0.0;

      for(;;) {
      System.out.print(prompt);
      if (input.hasNextDouble()) {
      value = input.nextDouble();
      if (validate.test(value))
      return value;
      }
      System.out.println("Input error. Try again.");
      input.nextLine();
      }
      }


      Which you could use with a lambda function like:



          double width = getDouble(input, "Enter width: ", x -> x > 0);





      share|improve this answer









      $endgroup$
















        3












        3








        3





        $begingroup$

        You are distinguishing between hasNextInt() and hasNextDouble() in the input stream, but treating them identically afterwards. hasNextDouble() will return true if the next token is an integer, because integers can be successfully parsed as a double too.



        So your loop could be simplified into:



        double width = 0.0;

        for(;;) {
        System.out.print("Enter width: ");
        if (input.hasNextDouble()) {
        width = input.nextDouble();
        if (width > 0)
        break;
        }
        System.out.println("Input error. Try again.");
        input.nextLine();
        }


        A few notes:




        • The unnecessary validWidth variable has been removed. A break statement exits the infinite for(;;) loop, skipping over the "cleanup, try again" code.


        • .nextLine() is used to cleanup after invalid input. This is important, because if the user enters "one fish two fish red fish blue fish" instead of say -12, your current approach will print out "Input error. Try again" 8 times. Using .nextLine() discards everything up to and including the new line character. Which brings us to zero and negative numbers. If the user enters a valid integer/double, but not a positive one, your code didn't skip any tokens, where as my code (as mentioned above) will skip the remaining input up to and including the new line character. Assuming the next character was a new line (as in the user entered -12 and pressed the return key) the following .hasNextDouble() will skip over the new line (and any other blank space) looking for the next token, so the effect is approximately the same.


        • But my code performs differently if the user enters red 5. You original code will print "Invalid input. Try again.", and then immediately consume the 5 as valid input, where as my code will discard the remainder of the line, and wait for the user to enter another line.



        Since you are using the code multiple places, putting it into a method is prudent. Here is one using a DoublePredicate functional interface in order to validate the input according to the caller's requirements:



        double getDouble(Scanner input, String prompt, DoublePredicate validate) {
        double value = 0.0;

        for(;;) {
        System.out.print(prompt);
        if (input.hasNextDouble()) {
        value = input.nextDouble();
        if (validate.test(value))
        return value;
        }
        System.out.println("Input error. Try again.");
        input.nextLine();
        }
        }


        Which you could use with a lambda function like:



            double width = getDouble(input, "Enter width: ", x -> x > 0);





        share|improve this answer









        $endgroup$



        You are distinguishing between hasNextInt() and hasNextDouble() in the input stream, but treating them identically afterwards. hasNextDouble() will return true if the next token is an integer, because integers can be successfully parsed as a double too.



        So your loop could be simplified into:



        double width = 0.0;

        for(;;) {
        System.out.print("Enter width: ");
        if (input.hasNextDouble()) {
        width = input.nextDouble();
        if (width > 0)
        break;
        }
        System.out.println("Input error. Try again.");
        input.nextLine();
        }


        A few notes:




        • The unnecessary validWidth variable has been removed. A break statement exits the infinite for(;;) loop, skipping over the "cleanup, try again" code.


        • .nextLine() is used to cleanup after invalid input. This is important, because if the user enters "one fish two fish red fish blue fish" instead of say -12, your current approach will print out "Input error. Try again" 8 times. Using .nextLine() discards everything up to and including the new line character. Which brings us to zero and negative numbers. If the user enters a valid integer/double, but not a positive one, your code didn't skip any tokens, where as my code (as mentioned above) will skip the remaining input up to and including the new line character. Assuming the next character was a new line (as in the user entered -12 and pressed the return key) the following .hasNextDouble() will skip over the new line (and any other blank space) looking for the next token, so the effect is approximately the same.


        • But my code performs differently if the user enters red 5. You original code will print "Invalid input. Try again.", and then immediately consume the 5 as valid input, where as my code will discard the remainder of the line, and wait for the user to enter another line.



        Since you are using the code multiple places, putting it into a method is prudent. Here is one using a DoublePredicate functional interface in order to validate the input according to the caller's requirements:



        double getDouble(Scanner input, String prompt, DoublePredicate validate) {
        double value = 0.0;

        for(;;) {
        System.out.print(prompt);
        if (input.hasNextDouble()) {
        value = input.nextDouble();
        if (validate.test(value))
        return value;
        }
        System.out.println("Input error. Try again.");
        input.nextLine();
        }
        }


        Which you could use with a lambda function like:



            double width = getDouble(input, "Enter width: ", x -> x > 0);






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 2 hours ago









        AJNeufeldAJNeufeld

        6,1601520




        6,1601520






















            PerfectContrast is a new contributor. Be nice, and check out our Code of Conduct.










            draft saved

            draft discarded


















            PerfectContrast is a new contributor. Be nice, and check out our Code of Conduct.













            PerfectContrast is a new contributor. Be nice, and check out our Code of Conduct.












            PerfectContrast is a new contributor. Be nice, and check out our Code of Conduct.
















            Thanks for contributing an answer to Code Review Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            Use MathJax to format equations. MathJax reference.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f215452%2fvalidating-user-input%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            VNC viewer RFB protocol error: bad desktop size 0x0I Cannot Type the Key 'd' (lowercase) in VNC Viewer...

            Tribunal Administrativo e Fiscal de Mirandela Referências Menu de...

            looking for continuous Screen Capture for retroactivly reproducing errors, timeback machineRolling desktop...