Bootstrap

static不能访问非静态变量

问题描述:

在这里插入图片描述

原因分析:

在static方法中是不能访问非静态变量 a 的,需要将 a 声明为static,答案才会是 0 ,否则是编译出错
在java中静态方法中不能使用非静态方法和非静态变量。但非静态方法中可以使用静态变量

解决方案:

https://www.nowcoder.com/test/question/done?tid=50395850&qid=72076#summary

;