Posted by Oli Filth on 03/30/06 13:55
David Haynes said the following on 30/03/2006 11:43:
> I'm not sure how many coders would find PHP as attractive if they
had to
> follow stricter object type coding. For example:
>
> $a = 'This is a string';
> $b = ' This is another string ';
> $c = 3;
> $d = $a.$b.$c;
>
> would become something like:
> $a = new String('This is a string');
> $b = new String(' This is another string ');
> $c = new Int(3);
>
> $d = $a->concat($b->concat($c->toString()));
Well, Java has strict typing, and you don't have to do this. Same in
C++ (for the most part).
--
Oli
Navigation:
[Reply to this message]
|