i just tested harry's code and did some testing with the results...
here is the code i ran last:
<cffunction name="functa" returntype="void">
<cfargument name="a">
<cfargument name="b">
<cfset functb(argumentcollection=arguments)>
</cffunction>
<cffunction name="functb">
<cfargument name="a">
<cfargument name="b">
<cfloop from="1" to="#structcount(arguments)#" index="i">
<cfdump var="#IsObject(arguments[i])#">
</cfloop>
</cffunction>
<cfset functa(1,2)>
and the dump was:
NO
NO
YES
perhaps that last value is the reference address when you did the argumentcollection? or some other java object floating around in the ether? ;)
----------------------------------------------------------You are subscribed to cfcdev. To unsubscribe, send an email to [email protected] with the words 'unsubscribe cfcdev' as the subject of the email.
CFCDev is run by CFCZone (www.cfczone.org) and supported by CFXHosting (www.cfxhosting.com).
CFCDev is supported by New Atlanta, makers of BlueDragon
http://www.newatlanta.com/products/bluedragon/index.cfm
An archive of the CFCDev list is available at www.mail-archive.com/[email protected]
