Is there a memory and performance hit taken from using Bloch's Builder Pattern?
Posted
by WolfmanDragon
on Stack Overflow
See other posts from Stack Overflow
or by WolfmanDragon
Published on 2010-03-15T16:00:23Z
Indexed on
2010/03/15
16:19 UTC
Read the original article
Hit count: 280
What is the memory and performance usage compared to creating a object with only a constructor?
The usage here is in creating a Set<Object>
or List<Object>
that may contain million plus entries and I am concerned with the overhead of using Bloch's Builder Pattern. I have used it in the past, but never in this large of a scope.
© Stack Overflow or respective owner