标题: file类对象创建 [打印本页] 作者: 张志阳 时间: 2012-4-6 11:00 标题: file类对象创建 利用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";。作者: newlaw2013 时间: 2012-4-6 11:17
可以这样写:
import java.io.*;
public class FileDemo {
public static void main(String[] args) {
//File f1 = new File("c:\\abc","b.txt");
String str = "b.txt";
File f1 = new File("c:\\abc",str);
}
}
str 需要定义成String类的引用,否则编译不能通过。作者: 陈扬 时间: 2012-4-6 18:19
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);之前没有定义,会提示报错。