search

Home  >  Q&A  >  body text

java - 这个地方为什么报未初始化这个错?try里面已经初始化了呀?

报这个错,我知道让第一步初始化为null就可以了,就是不知道为什么
try里面已经初始化了呀,为什么还报这个错
The local variable listbrand may not have been initialized

PHPzPHPz2907 days ago433

reply all(6)I'll reply

  • PHP中文网

    PHP中文网2017-04-18 09:58:06

    int getValue(){
        if(true)
            return 1;
    }

    Your problem is the same as this one. Even if you are sure that you will return here, it still cannot be compiled.

    reply
    0
  • 黄舟

    黄舟2017-04-18 09:58:06

    Putting initialization in try will not work. Assuming that the first sentence of try throws an exception, the result is that the two lists are not initialized. This will be checked during compilation

    reply
    0
  • PHP中文网

    PHP中文网2017-04-18 09:58:06

    If an exception occurs in the first sentence of the try block, listbrand will not be initialized, so a compilation error occurs

    reply
    0
  • 高洛峰

    高洛峰2017-04-18 09:58:06

    try{} also contains a "{}", it is a program module. You initialize the data in the module. If the module is not entered during operation, then the data outside is not initialized.

    reply
    0
  • PHP中文网

    PHP中文网2017-04-18 09:58:06

    If an exception occurs, the initialization cannot be successful. As long as there is a possibility that the initialization may not be successful, the editor will report an exception.

    reply
    0
  • ringa_lee

    ringa_lee2017-04-18 09:58:06

    Local variables within the method must be initialized before they can be used. This is checked during compilation.

    reply
    0
  • Cancelreply