Search:

Type: Posts; User: dlorde

Search: Search took 0.10 seconds.

  1. Replies
    40
    Views
    5,685

    Re: Implementing a two-dimensional boolean array

    So you have to copy the contents of the 2D letter array into the 2D matrix array? Why not just use the 2D letter array?
    If you have to do a copy, you can use a single loop to copy the row arrays...
  2. Replies
    40
    Views
    5,685

    Re: Implementing a two-dimensional boolean array

    The convention is to declare arrays of a type with the square brackets associated with the type rather than the variable:

    boolean[][] letter = ...


    That doesn't make sense to me - what do you...
  3. Replies
    40
    Views
    5,685

    Re: Implementing a two-dimensional boolean array

    The assignment instructions you posted tell you what method to call on the LEDFont class, what argument it takes, and what it returns. That's enough documentation to use it. What's the problem?
Results 1 to 3 of 3