Is it good practise to have multiple class definitions in one file? or is it preferable to have one class per file?
|
1
|
|
|
|
|
|
I prefer one class per file. You'll never have to search for the correct filename because it is always the class name. |
||||||||||||
|
|
|
I think it's preferable to have one class per file and to organize them in folders having the same hierarchy as their namespaces. |
||
|
|
|
|
Most programmers would consider one class per file to be a best practice. |
||
|
|
|
|
It is generally best practice to have one file per class. Some folk, not me, like to have more than more one if they are related and very very small in size. Others might do this in a prototyping stage. I say start and stay with one per file as does Scott McConnell in his discourse on Class Quality in his seminal book Code Complete To quote, "Put one class in one file. A file isn't just a bucket that holds some code. If your language allows it, a file should hold a collection of routines that supports one and only one purpose. A file reinforces the idea that a collection of routines are in the same class." |
|||
|
|
|
|
One class per file. That way you can avoid having to merge edits when two people have to edit the same file because one is working on Far better to have a process that didn't allow this sort of error to occur in the first place. |
||||||
|
|
|
Usually - no. Following practice "one class per file" simplifies browsing of solution. Additionally if you have a big team of developers and source control tool that uses pessimistic approach (exclusive locks) - your developers will have hard time while working on the same file. |
||
|
|
|
|
I do not see any issue with multiple classes in the same file, as long as the classes are related to each other. If you have resharper, you can always use the navigation tools to find any class. |
||||||||||||||
|
|
|
I would say no, i know devexpress hates it aswell ( It has some detection bad practives). But i do have it sometimes, when its a very small class thats basicly only used by the "main" class in the file. Personaly i think it comes down a bit to taste, there is a balance between having 10k lines long .cs files or having to many .cs in your project. |
||
|
|
|
|
I guess it is down to preference as you said. I think you'll find most online examples/ most code is one class per file for easy management. I sometimes put 2 classes in a file - only if i'm using the second class as an entity and it's only being used in the first class. |
||
|
|
|
|
I think in terms of it being a "best practise" approach then probably yes. However, really it depends on the project. I tend to group related code into separate units for example:
I really think a class only ever deserves it's own unit if it becomes huge. However, if it does get to this stage, you should start to consider moving some code into helper classes to separate the logic. |
||
|
|
|
|
I guess you ask because you've noticed already that it's considered best practice. Given the obvious benefits (and some less obvious ones mentioned here), why would you want to do it differently? Are there any benefits at all in multiple classes per file? I can't think of any. |
||||||
|
|
|
Usually it is the best solution to have one class per file (with the file named exactly like the contained class). I only differ from that if
|
||
|
|
|
|
I would have to agree with most on this. One class per file is ideal. It makes it easier to see what's available in a project without having to rely on intellisense to discover types that are available in a given assembly. I think the only time I ever fudge on the one class per file rule is when I'm defining a custom EventArgs class and it's related to an event that's fired from another class. Then typically I would define those in along with a delegate for the event in the same file. I don't know that it's a good practice one way or another or just out of sheer lazyness?? |
||
|
|
|
If you work on a very large project, too many files can slow down your build times significantly (at least with C++). I don't think that rigid adherence to a rule is necessarily the way to go. |
||
|
|
|
|
One Class Per File is my Preferred approach, it helps me get rid of any confusion later on... I tend to use a lot of partial classes though... |
||
|
|
|
|
As long as I dont break the 1000 line barrier, I'll stuff in as many related classes that makes sense. Sometimes an abstraction may only be one overridden method. |
||
|
|
