Classes in D are heap objects, you have to allocate them.
``myClas_1 c1 = new myClas_1;`` The default is null.
Richard (Rikki) Andrew Cattermole via Digitalmars-d-learn Mon, 26 Aug 2024 00:22:05 -0700
Classes in D are heap objects, you have to allocate them.
``myClas_1 c1 = new myClas_1;`` The default is null.