About 7,940 results
Open links in new tab
  1. What does "dynamic" actually mean? - Stack Overflow

    Jun 23, 2010 · Does this mean generating content anytime after design time, or only on the client side, or some other definition? In other words, as it relates to web development, what is the …

  2. c++ - How does dynamic_cast work? - Stack Overflow

    Dec 9, 2012 · The dynamic_cast operator checks the type of the actual object pointed to by the pointer. This is what makes it different from compile-time static_cast; the result of …

  3. What is the difference between statically typed and dynamically …

    Oct 5, 2009 · What does it mean when we say a language is dynamically typed versus statically typed?

  4. What does it mean that JavaScript is "dynamic"?

    Sep 9, 2015 · 39 Most languages have some aspect of dynamic behaviour. Even statically typed languages can have a dynamic or variant data type that can contain different data types. …

  5. Difference between static and dynamic programming languages

    What is the difference between static and dynamic programming languages? I know that it is all about type systems, but I’m looking for more clear clarifications.

  6. Detecting testcases created dynamically while running unittest …

    Feb 25, 2025 · what does "dynamic" mean? As a completely different approach, consider writing dynamically generated valid source code to tests/dynamic.py, and run discovery on that (now …

  7. What is the difference between static and dynamic loading?

    Mar 9, 2025 · Detailed Explanation Difference Between Static and Dynamic Loading Understanding the difference between static and dynamic loading is essential in machine …

  8. Static Vs. Dynamic Binding in Java - Stack Overflow

    Oct 26, 2016 · Here are a few important differences between static and dynamic binding: Static binding in Java occurs during compile time while dynamic binding occurs during runtime. …

  9. c++ - How dynamic linking works, its usage and how and why you …

    Apr 12, 2016 · How does the compiler make the executable have these references? Does this not result in a circular dependency between the compiler and the operating system? Since the …

  10. What does "Memory allocated at compile time" really mean?

    Jan 25, 2014 · In programming languages like C and C++, people often refer to static and dynamic memory allocation. I understand the concept but the phrase "All memory was …