Search:

Type: Posts; User: Norm

Search: Search took 0.10 seconds.

  1. Replies
    6
    Views
    1,544

    Re: VERY WEIRD OUTPUT... HELP PLEASE?

    What is the "it"?
    Have you read the API doc for the Arrays class's toString method?

    Show the code where it is giving the error and also post the full text of the error message.
  2. Replies
    6
    Views
    1,544

    Re: VERY WEIRD OUTPUT... HELP PLEASE?

    Change the println(the array) to println(Arrays.toString(the array))
  3. Replies
    6
    Views
    1,544

    Re: VERY WEIRD OUTPUT... HELP PLEASE?

    The string : [I@3bad086a is from the toString method for an integer array. Decoding the string:
    the [ is for a one dim array, the I is for data type int, the @... is the address in memory of the...
Results 1 to 3 of 3