- 浏览: 34828 次
- 性别:
- 来自: 成都
文章列表
<?xml version="1.0" encoding="ISO-8859-1"?>
<project name="TEST" basedir="." default="execute-ddl">
<property file="install.properties" />
<path id="build.classpath">
<fileset dir="../WebCont ...
<?xml version="1.0" encoding="ISO-8859-1"?>
<project name="Test" basedir="." default="deploy">
<property name="warfile" value="Test" />
<target name="unpack">
<unwar src="${warfil ...
package java.oop;
public class Customer extends Person{
static Name name = new Name("Tom");
static{
Screen.print("2", "Customer static init block!");
}
{
Screen.print("3", "Customer instance init block!");
}
Customer(){
...