Created
January 26, 2026 19:43
-
-
Save trycf/2063259d0c42a602f1db2732f55597e6 to your computer and use it in GitHub Desktop.
TryCF Gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| executorsClass = CreateObject("java", "java.util.concurrent.Executors"); | |
| SystemClass = createObject( "java", "java.lang.System" ); | |
| obj = executorsClass.newScheduledThreadPool(2) | |
| writedump( SystemClass.identityHashCode( obj ) ) | |
| obj2 = duplicate( obj ) | |
| writedump( SystemClass.identityHashCode( obj2 ) ) | |
| </cfscript> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment