利用File类的构造函数File(String parent,String child)创建对象时,后面的String child是不是可以是变量?比如File f1 = new File("c:\\abc","b.txt")可以写成File f1 = new File("c:\\abc",str),然后str="b.txt";。
File类的构造函数File(String parent,String child)指定了里面两个参数的类型,在传参数的时候,传进相对应的参数就可以了。
File f1 = new File("c:\\abc","b.txt")可以写成File f1 = new File("c:\\abc",str),然后str="b.txt";。这样是不能够通过编译的,
因为那个str变量要在File f1 = new File("c:\\abc",str);之前没有定义,会提示报错。