首页 > 代码库 > 局部变量使用细节

局部变量使用细节

public class TestThis {
    private String name;
    
    void eat(String name){
        //String food;//局部变量在使用时必须初始化,否则会报错   error
        String food = "apple";                    //right
        System.out.println(this.name+"邀请"+name+"吃"+food);
    }

}