Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/JavaCourse00/JavaCourseCodes
/ close
Method
close
01jvm/XlassLoader.java:66–74 ·
view source on GitHub ↗
(Closeable res)
Source
from the content-addressed store, hash-verified
64
65
// 关闭
66
private
static
void
close(Closeable res) {
67
if
(null != res) {
68
try {
69
res.close();
70
} catch (IOException e) {
71
e.printStackTrace();
72
}
73
}
74
}
75
}
Callers
1
findClass
Method · 0.95
Calls
1
close
Method · 0.65
Tested by
no test coverage detected