root/trunk/myweb/src/mypackage/PersonTest.java

Revision 53, 371 bytes (checked in by yabuki, 2 years ago)
  • Property svn:mime-type set to text/plain
Line 
1package mypackage;
2
3public class PersonTest {
4
5  public static void main(String[] args) {
6    Person thePerson=new Person();
7    thePerson.run();
8
9    Labor theLabor=new Labor();
10    theLabor.run();
11
12    thePerson=null;
13    try {
14      thePerson.run();
15    } catch(Exception e) {
16      System.out.println("例外発生:"+e.getMessage());
17    }
18  }
19}
Note: See TracBrowser for help on using the browser.