Search:

Type: Posts; User: akira25

Search: Search took 0.07 seconds.

  1. Re: Need help understanding how Java uses expressions and how they evaluate

    ahh, great, got it!

    Thanks for the help :)
  2. Re: Need help understanding how Java uses expressions and how they evaluate

    Hi,

    thanks very much for the reply. I think I understand what you are saying there. I'm still having trouble understanding why the statement:

    name == bird + "son";

    evaluates to False, I...
  3. Need help understanding how Java uses expressions and how they evaluate

    Hi,

    Hopefully this is a simple one. I have a section of code:

    int x = 17;
    int y = 9;
    String name = "Robinson";
    String bird = "Robin";

    My task is to explain what each expression evaluates...
Results 1 to 3 of 3