About 50 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. 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?

  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. 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. terminology - Static/Dynamic vs Strong/Weak - Stack Overflow

    Feb 28, 2010 · The terms are often used incorrectly to mean static and dynamic typing. To see the difference, think of C: the language is type-checked at compile time (static typing), but …

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

    Nov 22, 2008 · 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 …

  8. What does "dynamic" in "dynamic atexit destructor" mean?

    The problem is, of course, that dynamic libraries have their own lifetime that, in general, could end before the main application's one. If a code in a DLL registers one of its own functions as an …

  9. Difference between "var" and "dynamic" type in Dart?

    According to this article: As you might know, dynamic (as it is now called) is the stand-in type when a static type annotation is not provided. So, what is the difference between dynamic and …

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