What's the syntax for a new empty dynamic array or associative array?

Every time I want to set a AA, I have to say:
(supposing I already have some variable int[int] aa which points to the wrong one)

int[int] throwaway;
aa = throwaway;

Is  there a way to say something like:

aa = new int[int] ?

like I would with a class.

What about for a normal dynamic array?

Reply via email to