DriverManager Connection Statement ResultSetDriverManager: that manages the database driver that is used to connect to a database.
Thread t = new Thread(new A( ));
t.start( );
Method | Meaning |
---|---|
getName | Obtain thread’s name, if any |
getPriority | Obtain thread’s priority |
isAlive | Determine if a thread is still running |
join | Wait for a thread to terminate |
sleep | Suspend a thread for a period of time |
start | Start a thread by calling its run method |
t.join( );
> javap Person.class > javap -c Person.class
> jar -cvf file.jar file1.class file2.class
<?xml version="1.0" encoding="UTF-8"?> <project name="Hello World" default="Hello" basedir="."> <property name="HelloText" value="Hello Message"/> <property name="WorldText" value="World Message"/> <target name="Hello"> <echo>${HelloText}</echo> </target> <target name="World"> <echo>${WorldText}</echo> </target> </project>