Skip to content

Commit 8c5585c

Browse files
committed
[J8] Add manual loading example description
1 parent 3808f6e commit 8c5585c

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

img/Java 8. Manual Loading.jpg

109 KB
Loading

java-8/manual/README.md

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
## Java 8. Manual Loading
2+
---
3+
**Task:** load any application class using a custom class loader (`CustomClassLoader`).
4+
5+
### Solution
6+
---
7+
Project with three classes:
8+
- [`Main`](src/ru/ispras/j8/manual/Main.java) - a class containing the `main` method, where an instance of the `CustomClassLoader` class is created, the `Cat` class is loaded using it, creating an instance of the class `Cat` and calling the `Cat::talk` method;
9+
- [`Cat`](src/ru/ispras/j8/manual/Cat.java) - loadable class with the `talk` method, which prints the string *"Meow"* to `stdout`;
10+
- [`CustomClassLoader`](src/ru/ispras/j8/manual/CustomClassLoader.java) - a class that is an implementation of a custom class loader.
11+
12+
### Run
13+
---
14+
```shell
15+
java8 -cp . ru.ispras.j8.manual.Main
16+
```
17+
18+
or
19+
20+
```shell
21+
java8 -jar manual-1.0.jar
22+
```
23+
24+
Output:
25+
26+
```
27+
System ClassLoader is ru.ispras.j8.manual.CustomClassLoader@75b84c92
28+
Main Class ClassLoader is ru.ispras.j8.manual.CustomClassLoader@75b84c92
29+
Cat Class ClassLoader is ru.ispras.j8.manual.CustomClassLoader@75b84c92
30+
Meow
31+
```
32+
33+
### Explanation
34+
---
35+
![Java 8. Manual Loading.jpg](../../img/Java%208.%20Manual%20Loading.jpg)
36+
37+
- When a `CustomClassLoader` is created, its parent becomes `sun.misc.Launcher$AppClassLoader`.
38+
39+
### Notes
40+
---
41+
- `CustomClassLoader` gets some system classes to be loaded first, for example classes from `java.*` packages. If you try to load a class from the `java.*` package, the JVM will throw `java.lang.SecurityException: Prohibited package name: java.*`.

0 commit comments

Comments
 (0)