好奇怪的File file=new File();
package file;
public class File {
public static void main(String[] args) {
// TODO Auto-generated method stub
File file=new File();
}
}
為什么不導(dǎo)包不提示錯(cuò)誤呢,
而要寫File file=new File("e:\\jnm");就出錯(cuò)了呢?
package file;
public class File {
public static void main(String[] args) {
// TODO Auto-generated method stub
File file=new File();
}
}
為什么不導(dǎo)包不提示錯(cuò)誤呢,
而要寫File file=new File("e:\\jnm");就出錯(cuò)了呢?
2015-05-13
舉報(bào)
2015-05-13
在File類中 new自己是不需要導(dǎo)包的。。
所以會報(bào)錯(cuò)了