静态上下文中的非静态字段引用
在Java中,静态方法无法直接访问非静态字段。此错误通常在尝试从静态方法访问实例变量时发生。
理解问题
在给定的代码中,错误发生在 main 方法中:
<code class="java">Account account = new Account(1122, 20000, 4.5); account.withdraw(balance, 2500);</code>
这里,withdraw() 方法是静态的,但它尝试访问非静态字段余额。由于 main 方法是静态的,因此它无法引用诸如balance之类的实例变量。
解决方案
要解决此错误,请将方法设置为非静态或将字段设置为非静态
选项 1:使 Withdraw 方法成为非静态
将withdraw() 方法更改为:
<code class="java">public void withdraw(double withdrawAmount) { balance -= withdrawAmount; }</code>
现在,方法可以访问余额字段,因为它是非静态的。
选项 2:使余额字段静态
或者,使余额字段静态:
<code class="java">private static double balance = 0;</code>
现在,可以从静态上下文(如 main 方法)访问余额字段:
<code class="java">Account account = new Account(1122, 20000, 4.5); account.withdraw(balance, 2500);</code>
以上是为什么我无法从 Java 中的静态方法访问非静态字段?的详细内容。更多信息请关注PHP中文网其他相关文章!