New files.
From-SVN: r58778
This commit is contained in:
parent
c9fe6f9f39
commit
55376e4128
8 changed files with 147 additions and 0 deletions
28
libjava/testsuite/libjava.loader/TestMultiple.java
Normal file
28
libjava/testsuite/libjava.loader/TestMultiple.java
Normal file
|
@ -0,0 +1,28 @@
|
|||
import java.net.*;
|
||||
|
||||
public class TestMultiple
|
||||
{
|
||||
public static void main (String[] args)
|
||||
{
|
||||
URLClassLoader ucl =
|
||||
(URLClassLoader) ClassLoader.getSystemClassLoader();
|
||||
URL urls[] = ucl.getURLs ();
|
||||
|
||||
MyLoader t1 = new MyLoader (urls);
|
||||
MyLoader t2 = new MyLoader (urls);
|
||||
|
||||
Class c1, c2;
|
||||
|
||||
try {
|
||||
|
||||
c1 = t1.loadClass ("dummy");
|
||||
c2 = t2.loadClass ("dummy");
|
||||
|
||||
}
|
||||
catch (Exception e) {
|
||||
e.printStackTrace ();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue