A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 张志阳 中级黑马   /  2012-4-6 11:00  /  1474 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

利用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";。

2 个回复

倒序浏览
可以这样写:
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类的引用,否则编译不能通过。
回复 使用道具 举报
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);之前没有定义,会提示报错。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马