From b94209ba0e486f0600b59804b0e62594444999ee Mon Sep 17 00:00:00 2001 From: Ceiling_roof <48134466+ResilientSpring@users.noreply.github.com> Date: Fri, 6 Oct 2023 00:12:47 +0800 Subject: [PATCH] Committed on or around 2023/10/06 --- Chapter11/Creating_a_Thread_annotated.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Chapter11/Creating_a_Thread_annotated.java b/Chapter11/Creating_a_Thread_annotated.java index abe09f2..6b97a51 100644 --- a/Chapter11/Creating_a_Thread_annotated.java +++ b/Chapter11/Creating_a_Thread_annotated.java @@ -17,6 +17,9 @@ public static void main(String[] args) { // To create another thread from within the main thread, construct a MyThread object first. + + Thread newtThread = new Thread(); +// newtThread.setContextClassLoader(myThread2023); }