Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Java 中,关键字final用于表示不能重新分配变量。如果是这样,为什么在方法中声明的变量不能有final关键字?为什么这不合法:
final
public void method() { final String x = "name"; }
对于长方法,它可能会派上用场。
你可以。
public void foo() { final String bar = "bar"; }
编译就好了。