package d1;
import java.io.File;
public class file1 {
public static void main(String[] args) {
test();}
static void test(){
String path ="c:\\java";
String file="hell.java";
File f=new File(path,file);
test2();
try{
boolean b=f.createNewFile();
System.out.println(b);
}catch(Exception e){
e.printStackTrace();
}
}
static void test2(){int a=9;}
import java.io.File;
public class file1 {
public static void main(String[] args) {
test();}
static void test(){
String path ="c:\\java";
String file="hell.java";
File f=new File(path,file);
test2();
try{
boolean b=f.createNewFile();
System.out.println(b);
}catch(Exception e){
e.printStackTrace();
}
}
static void test2(){int a=9;}
}
其中test方法直接访问test2();static没有this或者super()
super()表示调用父类构造函数
this相当于一个构造函数