Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Java, is having ~50 data fields in a class of about 1000 lines a bad thing?

Edit: Thanks for the feedback. Has really opened my eyes and I'll try to delegate functionality across more classes rather than have a single do-everything class. :)

share|improve this question
We would need some code to even begin to make a decision. – Axonn Jul 22 '11 at 10:40
I understand that now. I think I've sussed what I need to do. – paranoid-android Jul 22 '11 at 10:44

7 Answers

up vote 8 down vote accepted

The question is very vague. The answer can be both yes and no. Yes, it's a bad thing if you can break the functionality cleanly into more classes. No, it's not a bad thing if the class is well focused and the only reason you got 50 fields is because you NEED them all there.

I have, for example, a class of 900 lines with 70 fields, but that's because the class implements a bit of artificial intelligence and the parameters the AI algorithm uses are a lot of behaviors and thresholds which need to be defined there so that child classes tweak them. In my case, I would say that it's not a bad architecture, and my 14 years of software development seem to agree ::- ).

Sure, if the class would go over 1000 lines, I could break it down further into 2: movement AI and attack AI, but for now, it really makes sense in the context of my project to have it together because movement AI and attack AI are never applied independently: they work together, they should be in the same class. If I ever have to make an object which ONLY needs movement AI, then by all means, I'd break it apart into 2.

share|improve this answer
+1 Same answer, different words – Bohemian Jul 22 '11 at 10:32
1  
Tough question. We would need some code samples to even begin to answer it ::- ). – Axonn Jul 22 '11 at 10:40
1  
+1 for good answer (although I secretly desire your untimely demise for writing a 900 line class). – hoipolloi Jul 22 '11 at 10:44
Actually I admit I could break it in 2 but it's not THAT serious (I could split the artificial intelligence in 2 parts - movement & attacking). You can always break stuff in more pieces, but sometimes this may lead to another problem: class fragmentation. If you think I invented that, it's because I did. It's when you break up your code so much that you actually make it less manageable. I try to not be swayed by some of the more radical trends in software such as "a class may have no more than 10 fields" (Code Complete). If you end up with too many classes, it's just as bad. – Axonn Jul 22 '11 at 12:07

from Code Complete:

Be critical of classes that contain more than about seven data members:The number "7±2" has been found to be a number of discrete items a person can remember while performing other tasks (Miller 1956). If a class contains more than about seven data members, consider whether the class should be decomposed into multiple smaller classes (Riel 1996). You might err more toward the high end of 7±2 if the data members are primitive data types like integers and strings, more toward the lower end of 7±2 if the data members are complex objects.

share|improve this answer
I think this is greatly exaggerated. 9 fields is insane. You may get to a situation when you got TOO MANY classes and then, again, it's bad ::- ). I think you need to find balance in your project, not obsessively follow some rules some dude wrote 30 years ago when software development was a lot different. – Axonn Jul 22 '11 at 10:34
Of course it is a rule of thumb that is not intended to be strictly accurate or reliable for every situation. However, in most cases it helps to evaluate the design. – salman.mirghasemi Jul 22 '11 at 10:38
Agreed, this is foolish. The number of fields should be guided by the principle of cohesion, not some arbitrary figure based on how much people can remember. – hoipolloi Jul 22 '11 at 10:38
The other problem is that if you stick to such rules with obsession, you may end up with too many classes and then its worse ::- ). – Axonn Jul 22 '11 at 12:08

Yes, it's a code smell and will make your code harder to read and modify. Your class will become a God object

Jeff has a nice article on them, all of us should read it.

share|improve this answer
God Object. Didn't know that one, it's a nice nomenclature. But be careful, not all "big classes" are code smells. Programming is very much like architecture: to build a big building, you sometimes need large concrete slabs, not only little screws and furniture ::- ). – Axonn Jul 22 '11 at 12:15

Sounds bad, but who knows. You may actually have found an object that requires 50 fields, all of which are interrelated and required to be in the one object.

If not, and to stay sane, try to split it up into smaller parts where possible.

share|improve this answer

Short story; yes. Long story; this is very subjective. A class with 1000 lines seems very excessive. Are all those fields really related? A class should be focused (exhibit high cohesion). Try splitting your fields into smaller, more tightly focused classes.

share|improve this answer

I think the bad thing is to have a class about 1000 lines... Try to refactor it to do it smaller if it possible...

share|improve this answer

Not necessarily, but it often means that your class should be seperated into several classes as it is doing to many things or your class takes on responsibilities that should be in other classes. It depends on your application's design.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.