Search:

Type: Posts; User: Norm

Search: Search took 0.13 seconds.

  1. Replies
    8
    Views
    1,290

    [SOLVED] Re: incompatible types

    Did you understand what the problem with the code on line 25 was?
  2. Replies
    8
    Views
    1,290

    [SOLVED] Re: incompatible types

    The assignment statement is trying to assign a numeric value to an array. The compiler doesn't allow that. If the variable to the left of the = is an array, then the value to the right of the = must...
  3. Replies
    8
    Views
    1,290

    [SOLVED] Re: incompatible types

    Please post the full text of the error message that shows what types the compiler found.
    For example:

    TestCode12.java:566: error: incompatible types
    x = 22;
    ^
    required:...
  4. Replies
    8
    Views
    1,290

    [SOLVED] Re: incompatible types

    Please post the full text of the error message that shows the found and required types.

    What line is line 25?
Results 1 to 4 of 4