繁体   English   中英

变量没有在java中定义try catch return语句

[英]variable not defined in java try catch return statement

它显示temp_lib未声明,但已经声明了。

库temp_lib已在try和return之后声明,temp_lib最后写入,但它也要求我初始化变量。

int numAdded=0;
File inputfile;

inputfile = new File("export_Library.txt");
try {
    Library temp_lib;
    Scanner inputScanner = new Scanner(inputfile);
    System.out.println("processing a library...");
    String name=inputScanner.nextLine();
    int capacity=Integer.parseInt(inputScanner.next());
    temp_lib=new Library(name,capacity);

    LibraryItem item=new LibraryItem();
    while(inputScanner.hasNextLine()){
        item.setTitle(inputScanner.nextLine());
        item.setID_code(inputScanner.nextLine());
        item.setYearOfPublication(Integer.parseInt(inputScanner.nextLine()));
        if(inputScanner.next()=="1")
        {
            item.setOnLoan(true);
        }
        else
        {
            item.setOnLoan(false);
        }
        item.setReplacementCost(inputScanner.nextDouble());
    }   
    inputScanner.close();  
}
catch (IOException e) {
    System.out.println("IO Exception reading shapes from file"+e);
    e.printStackTrace() ;
    //return temp_lib;  
}
return temp_lib;

Library temp_lib; 必须在try-catch块之前才能在try-catch块之后进入范围。

Library temp_lib = null; // you must give it an initial value, or the code
                         // won't compile 
try {
   ...
}
catch (..) {
   ...
}
return temp_lib;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM