When you are developing, when can you determine if you're having a lot of unecessary classes in your application? is there a certain limit on how many classes you should have?
|
There really isn't such a thing as "too many classes." What can be a problem is "too many classes doing the same thing." If you feel that you have too many classes in your codebase, a good way to audit that would be to add some new requirements. Anything that forces you to make some changes to the code. (In a separate branch of the source control, of course.) How difficult is it to make those changes? Does a relatively simple change require that you modify tons and tons of classes? If that's the case then there's a very good chance that you do have too many, but the problem isn't the number itself. It's primarily a matter of personal preference in many cases. There's often a trade-off between code re-use and code de-coupling. By separating out every concern possible and having lots of small classes, you de-couple everything from everything else. However, you often find that you have to repeat code in such cases because a lot of code might be doing "the same thing" but for a slightly different reason. On the other hand, if you insist on never repeating anything in the code, then while you get fewer classes you also often end up with more coupling because a single class will have multiple responsibilities to any code which requires similar functionality. The bottom line in most cases is resistance to change. Coupling vs. re-use is something people can argue about at length, but software rigidity is where the argument turns into actual effort (money). Test how difficult it is to make changes to the code. Then try re-arranging your classes/logic in a manner that you think would be more accepting of change and test it again. Was there a significant improvement? |
|||
|
|
|
Generally alot of classes means you are likely to have solved your problems very generally. This is usually good since it means you hopefully will have an easier time changing behaviours when you eventually need to. When developing smaller projects sometimes it can be better to be more specific (i.e. less general) to achieve things faster this could lead to less classes, but might be harder to change when the need appears. As long as the classes are well ordered and have a well defined purpose it should not be a problem to have many classes. What can how ever be a problem is if classes are tightly coupled or if the responsibility of some classes are not well defined. More info about coupling can be found here. |
|||||||
|
|
It's all depend on your project. its depend on your requirements. |
|||
|
|
|
An application can all be in one code file or each atomized function can be in its own file, the only thing affected is maintainabiliy. Maintainability can mean your own ability to navigate the code, or it can mean how others can understand the code, or if it is possible to build new releases. I don't think there are any generic guidelines on this that always apply, it depends on so many things. E.g., when coding in JavaScript you typically use fewer (and bigger) files which contain more unrelated functionality than if you are coding in C# or C++. If you are using Visual Studio 2012 then http://msdn.microsoft.com/en-us/library/bb385910.aspx and http://msdn.microsoft.com/en-us/library/dd264939.aspx has information about how Code Metrics and Code Analysis works. This is an example of a report from Code Metrics in Visual Studio 2012 based on my own app, the values are explained at http://msdn.microsoft.com/en-us/library/bb385914.aspx.
|
|||
|
|
|
I think it depends which area is having large number of classes. If there are many static classes containing common business logic, this will be considered bad as static classes should be used only for common helper methods. Static classes should never contain common business logic. If there are different classes for different layers for holding essentially same data. This will be considered bad as DTO classes should not be duplicated across layers. However if classes have been created after proper decomposition of requirements, then I think it is actually good to have large number of classes. |
|||
|
|
|
As many others have suggested, "it depends..." Usually it depends on a combination of your methods, your goals and the preferences and abilities of your team members. If you are very stringent about unit tests, you probably end up with a lot of small, general classes and dependency injection. This also means that it's very hard for the individual team member to see the concrete whole you are building from all the parts that are so very, very generic. Personally I prefer to think in terms of an API built on two levels: A lower level made of generic, independent parts and a high level where I use a couple of facades, directors etc. to present something concrete and useful to the other coders. This is much like the design of the iOS libraries IMHO. |
|||
|
|