About 7,290 results
Open links in new tab
  1. 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?

  2. 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 …

  3. 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 …

  4. 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.

  5. 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. …

  6. What is the difference between a strongly typed language and a ...

    Apr 22, 2010 · A strongly-typed language has values that have a type at run time, and it's difficult for the programmer to subvert the type system without a dynamic check. But it's important to …

  7. 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. …

  8. 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 …

  9. What do 'statically linked' and 'dynamically linked' mean?

    Mar 22, 2019 · I often hear the terms 'statically linked' and 'dynamically linked', often in reference to code written in C, C++ or C#. What are they, what exactly are they talking about, and what …

  10. algorithm - What is dynamic programming? - Stack Overflow

    What is dynamic programming? How is it different from recursion, memoization, etc? I have read the wikipedia article on it, but I still don't really understand it.