Domanda di colloquio di Revature

What does static mean?

Risposte di colloquio

Anonimo

8 ago 2019

2 things come to mind. A static variable, in what the variable is predefined being either a string, boolean, or number. Or I think of Static Analysis, where your program is not live and when you're possibly debugging, but analyzed for it structure and meets your industries standards.

Anonimo

15 ott 2019

It is a kind of method that calls are made directly on the class and are not callable on instances of the class.Static methods are often used to create utility functions.

1