首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > J2SE开发 >

关于在FileNotFoundException构造体的疑问,该如何处理

2012-02-05 
关于在FileNotFoundException构造体的疑问privateFileNotFoundException(Stringpath,Stringreason){super(

关于在FileNotFoundException构造体的疑问
private   FileNotFoundException(String   path,   String   reason)   {
super(path   +   ((reason   ==   null)
            ?   " "
            :   "   ( "   +   reason   +   ") "));
        }
请问这个私有构造体有什么作用呢

[解决办法]
This private constructor is invoked only by native I/O methods.
[解决办法]
FileNotFoundException提供了public FileNotFoundException()和public FileNotFoundException(String s)两个public方法供我们用,而private FileNotFoundException(String path, String reason)这个方法指示供FileNotFoundException内部使用的。

热点排行