Difference between Static and final?

后端 未结 11 1253
天涯浪人
天涯浪人 2020-11-27 08:51

I\'m always confused between static and final keywords in java.

How are they different ?

11条回答
  •  春和景丽
    2020-11-27 09:44

    Static variable values can get changed although one copy of the variable traverse through the application, whereas Final Variable values can be initialized once and cannot be changed throughout the application.

提交回复
热议问题