0

Pascalを試していますが、独自のクラスを定義しましたBlock。私はPlayGridと呼ばれていますが、今はそれをsarray[1..20, 1..20] of Blockで埋めようとしています。Block

このforループ:

for IterY := 1 to 20 do
    for IterX := 1 to 20 do

      //How do I put a new block instance in the PlayGrid?

      end.
    end.

これを行うには、NewとDisposeを使用する必要がありますか?

ありがとう。

4

1 に答える 1

2

これは私がすることです:

type
  TBlock = class    
     // You class stuff goes here
  end;

var 
  PlayGrid: array[1..20, 1..20] of TBlock;

begin
  for X := 1 to 20 do
    for Y := 1 to 20 do
      PlayGrid[X, Y] := TBlock.Create;
end.
于 2012-08-17T21:26:15.473 に答える