Re: Classes vs. Modules
neither is worse than the other?
classes are more verbose, slower performance and no tangible benefit
On Feb 13, 5:16 am, "Zytan" <zytanlith...@y ahoo.comwrote:
>
Yes, very true. I guess that's what I was trying to say, is that
neither is worse than the other. But, yeah, the way my post came out
was ridiculous. Thanks for clarifying.
>
Zytan
neither is worse than the other?
classes are more verbose, slower performance and no tangible benefit
On Feb 13, 5:16 am, "Zytan" <zytanlith...@y ahoo.comwrote:
You're no more likely to have dependencies with a class then you are
with a module. You can have a module that relies on functions in
another module, just as you can have a class that relies on functions
in another class. Both create cause your code to be tightly coupled,
and that should be avoided as much as possible, whether you use classes
or modules.
with a module. You can have a module that relies on functions in
another module, just as you can have a class that relies on functions
in another class. Both create cause your code to be tightly coupled,
and that should be avoided as much as possible, whether you use classes
or modules.
Yes, very true. I guess that's what I was trying to say, is that
neither is worse than the other. But, yeah, the way my post came out
was ridiculous. Thanks for clarifying.
>
Zytan
Comment