-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clear temp var for captured var expr to permit GC
- Loading branch information
Showing
3 changed files
with
66 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
import java.lang.ref.WeakReference | ||
import java.util.concurrent.atomic.AtomicReference | ||
|
||
final class Mark | ||
|
||
object Test { | ||
|
||
def main(args: Array[String]): Unit = { | ||
myTest() | ||
} | ||
|
||
final def myAssert(cond: => Boolean): Unit = { | ||
assert(cond) | ||
} | ||
|
||
def myTest(): Unit = { | ||
val ref = new AtomicReference[WeakReference[AnyRef]] | ||
var mark: AnyRef = null | ||
assert(ref.compareAndSet(null, new WeakReference(new Mark))) | ||
mark = ref.get().get() | ||
myAssert(mark ne null) // in theory this could fail, but it isn't | ||
mark = null | ||
System.gc() | ||
var n = 10 | ||
while (n > 0 && ref.get().get() != null) { | ||
System.gc() | ||
Thread.`yield`() | ||
//print(".") | ||
n -= 1 | ||
} | ||
assert(ref.get().get() == null) | ||
} | ||
} |
This file contains 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