<cfset intSize = 1000 />
<cfset arrGirls = ArrayNew( 1 ) />
<cfset ArrayResize( arrGirls, intSize ) />
<cftimer label="Extend Methodology" type="outline">
<cfloop index="intIndex" from="1" to="#intSize#" step="1">
<cfset arrGirls[ intIndex ] = CreateObject(
"component",
"Girl"
).Init(
FirstName = "Yuu",
LastName = "Sekine"
) />
</cfloop>
</cftimer>
<cftimer label="God Object Methodology" type="outline">
<cfloop index="intIndex" from="1" to="#intSize#" step="1">
<cfset arrGirls[ intIndex ] = CreateObject(
"component",
"FullGirl"
).Init(
FirstName = "Yuu",
LastName = "Sekine"
) />
</cfloop>
</cftimer>