www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Array of interface only with cast()?

reply Andre <andre s-e-a-p.de> writes:
Hi,

I just stumbled about this issue with array of interface. I want
to pass several objects (C and D) which shares the same interface A.
It seems somehow cumbersome that it only works if there is a cast on
the first element of the array.

interface A{}

class B: A{}

class C: B{};
class D: B{};

void main()
{
	//A[] arr = [new C(), new D()]; // Does not work
	A[] arr = [cast(A) new C(), new D()]; // Does work
}

Is the cast really needed?

Kind regards
André
Apr 22 2014
next sibling parent reply "Andrej Mitrovic" <andrej.mitrovich gmail.com> writes:
On Tuesday, 22 April 2014 at 15:19:55 UTC, Andre wrote:
 Is the cast really needed?
It's a known issue and a filed bug report. I don't have the Issue number at hand though, someone else will likely provide it.
Apr 22 2014
parent reply Andre <andre s-e-a-p.de> writes:
Am 22.04.2014 17:23, schrieb Andrej Mitrovic:
 On Tuesday, 22 April 2014 at 15:19:55 UTC, Andre wrote:
 Is the cast really needed?
It's a known issue and a filed bug report. I don't have the Issue number at hand though, someone else will likely provide it.
Nice to hear that it is not by design but will be fixed. Thanks a lot. Kind regards André
Apr 22 2014
parent "bearophile" <bearophileHUGS lycos.com> writes:
Andre:

 Nice to hear that it is not by design but will be fixed.
See: https://issues.dlang.org/show_bug.cgi?id=3543 Bye, bearophile
Apr 22 2014
prev sibling parent "Steven Schveighoffer" <schveiguy yahoo.com> writes:
On Tue, 22 Apr 2014 11:19:57 -0400, Andre <andre s-e-a-p.de> wrote:

 Hi,

 I just stumbled about this issue with array of interface. I want
 to pass several objects (C and D) which shares the same interface A.
 It seems somehow cumbersome that it only works if there is a cast on
 the first element of the array.

 interface A{}

 class B: A{}

 class C: B{};
 class D: B{};

 void main()
 {
 	//A[] arr = [new C(), new D()]; // Does not work
 	A[] arr = [cast(A) new C(), new D()]; // Does work
 }

 Is the cast really needed?
At this point, yes. This is because the expression [new C(), new D()] does not take into account what you are assigning to (IMO it should). The compiler will use the most derived type possible that all the elements implicitly cast to. In this case, it will be a B[]. -Steve
Apr 22 2014