返信ありがとうございます!! しかし、私はまだそれをすることができません。私が得ているエラーは、「要素objGet1は、タイプクラスcoldfusion.runtime.VariableScopeのJavaオブジェクトで定義されていません。」です。
以下は私の完全なコードです。cfhttp情報を含む各スレッドの値をダンプしたいだけです。
http://www.google.com/search? "&" q = Vin + Diesel "&"&num = 10 "&"&start = ")/>
<cfset intStartTime = GetTickCount() />
<cfloop index="intGet" from="1" to="10" step="1">
<!--- Start a new thread for this CFHttp call. --->
<cfthread action="run" name="objGet#intGet#">
<cfhttp method="GET" url="#strBaseURL##((intGet - 1) * 10)#" useragent="#CGI.http_user_agent#" result="THREAD.Get#intGet#" />
</cfthread>
</cfloop>
<cfloop index="intGet" from="1" to="10" step="1">
<cfthread action="join" name="objGet#intGet#" />
<cfdump var="#Variables['objGet'&intGet]#"><br />
</cfloop>
ループ内でスレッドを結合した後に使用する場合。希望の結果が得られましたありがとうございます!!