Tuesday, 2 May 2017

Java Static

Duplicate: What does the 'static' keyword do in a class?






I've read this post already.



What does the "static" keyword in a method do?




I remember being told that static != clingy...but that is pretty much all I know about this keyword.

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...