What's the equivalent of C's “static” keyword in Java?

前端 未结 5 1664
粉色の甜心
粉色の甜心 2020-12-05 12:32

I want to know what could be the equivalent keyword in java which could perform same function as \"Static keyword in C\".. I want to do recursion in java, performing same fu

5条回答
  •  既然无缘
    2020-12-05 13:17

    The concept of static in Java doesn't adhere with the concept of static in C. However, there is a static keyword in Java as well. But its more like a static in C++ then C, with some differences.

提交回复
热议问题