About 195,000 results
Open links in new tab
  1. STATIC Definition & Meaning - Merriam-Webster

    The meaning of STATIC is exerting force by reason of weight alone without motion. How to use static in a sentence.

  2. Static ft. Hatsune Miku - YouTube

    ⚠ This video contains flashing colors ⚠ https://flavorfoley.com/static ⬅️ Streaming, offvocal, etc---Are you still watching? Are you still watching? Are you ...

  3. Static - Wikipedia

    Static library, or statically-linked library, a set of routines, external functions and variables which are resolved in a caller at compile-time Static method, a method of a class that does not need an explicit …

  4. STATIC Definition & Meaning | Dictionary.com

    STATIC definition: pertaining to or characterized by a fixed or stationary condition. See examples of static used in a sentence.

  5. STATIC | English meaning - Cambridge Dictionary

    STATIC definition: 1. staying in one place without moving, or not changing for a long time: 2. A static website is….

  6. static Keyword in Java - GeeksforGeeks

    Nov 10, 2025 · The static keyword in Java is used for memory management and belongs to the class rather than any specific instance. It allows members (variables, methods, blocks, and nested …

  7. Static - definition of static by The Free Dictionary

    Also, stat′i•cal. 1. of or pertaining to bodies or forces at rest or in equilibrium. 2. pertaining to or characterized by a fixed or stationary condition. 3. showing little or no change: a static relationship. 4. …

  8. Static - Definition, Meaning & Synonyms | Vocabulary.com

    Static means not moving or changing––it's often used to describe abstract ideas that can't be seen. "The troops were moving all over the country, engaged in skirmishes, but the army's overall position …

  9. STATIC definition and meaning | Collins English Dictionary

    Something that is static does not move or change. The number of young people obtaining qualifications has remained static or decreased. Both your pictures are of static subjects.

  10. What does the 'static' keyword do in a class? - Stack Overflow

    A static method belongs to the class as against other non-static methods that are invoked using the instance of a class. To invoke a static method, you don’t need a class object.