报这个错,我知道让第一步初始化为null就可以了,就是不知道为什么
try里面已经初始化了呀,为什么还报这个错
The local variable listbrand may not have been initialized
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.
黄舟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
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
高洛峰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.
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.
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.