[fpc-pascal] A better way?
Ryan Joseph
ryan at thealchemistguild.com
Thu Apr 14 14:42:38 CEST 2016
> On Apr 14, 2016, at 6:09 PM, Michael Van Canneyt <michael at freepascal.org> wrote:
>
> So, put bluntly, you are unwilling to do things properly, and then complain that the
> language does not allow you to do this easily enough ?
>
> No, you need to do things properly.
I thought that was probably the answer I’d get but I wanted to ask anyways. I get there’s a Pascal way but it’s making the job more difficult then it should be so I opt for the quick and easy hack. Maybe it’s bad form but at the end of the day I just want to make things work and get the job done instead of getting held up on small details.
>
>>
>> The interface was probably over complicating the example actually because
>> the true problem is having this pattern of a parent->child relationship
>> where both classes need to know about each other to some extent but
>> putting them in the same unit causes clutter and pollution in other units
>> namespaces. In this example it’s likely that many other units use TClassB
>> and it’s not exclusive to TClassA so putting them in the same unit doesn’t
>> make sense.
>
> It certainly does make sense, if they are so intertwined.
>
> This is not Java where you must put all classes in a single separate file.
>
> If classes are so intertwined that they need detailed knowledge of each
> other's property, put them in 1 unit.
>
> It is as simple as that.
That would be a solution but it’s not very pretty. Having 2 classes in the same unit that need knowledge of each other but are still mutually exclusive is also bad design in my opinion.
Why is it so terrible that classes could have forward declarations outside of a single block anyways? It seems like a practical and efficient solution that requires lots of extra work in design or typecasting/interfaces.
Regards,
Ryan Joseph
More information about the fpc-pascal
mailing list