About 32,500 results
Open links in new tab
  1. What is the difference between statically typed and dynamically …

    Oct 5, 2009 · Dynamically typed languages A language is dynamically typed if the type is associated with run-time values, and not named variables/fields/etc. This means that you as a …

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

    Apr 22, 2010 · Statically typed means, the compiler figures out the type of each variable at compile time. Dynamically typed languages only figure out the types of variables at runtime.

  3. terminology - Static/Dynamic vs Strong/Weak - Stack Overflow

    Feb 28, 2010 · Statically typed languages are usually compiled, and dynamically typed languages are interpreted. Therefore, dynamicly typed languages can check typing at run time.

  4. Dynamic type languages versus static type languages

    Dynamically typed languages tend to require more unit testing, which is tedious at the best of times. Also, statically typed languages can have certain features which are either impossible …

  5. strong typing - Is Python strongly typed? - Stack Overflow

    Jul 4, 2012 · 49 You are confusing 'strongly typed' with 'dynamically typed'. I cannot change the type of 1 by adding the string '12', but I can choose what types I store in a variable and change …

  6. Which languages are dynamically typed and compiled (and which …

    Jan 12, 2017 · In my reading on dynamic and static typing, I keep coming up against the assumption that statically typed languages are compiled, while dynamically typed languages …

  7. Difference between static and dynamic programming languages

    Can you change your question to "Difference between statically and dynamically typed programming languages?". There is actually a definition of static and dynamic programming …

  8. type systems - Why Is Dynamic Typing So Often Associated with ...

    The language is dynamically typed BECAUSE of its design, the design is so that you can change stuff at runtime, that's what's making it so dynamic. If a function would return a typed value, …

  9. strong typing - Is C strongly typed? - Stack Overflow

    Sometimes "strongly typed" is used loosely to mean "statically typed", and "weakly typed" is used incorrectly to mean "dynamically typed". A better use for the term "strongly typed" is that "you …

  10. static typing - Why is C# statically typed? - Stack Overflow

    The fact that C# both statically and strongly typed doesn't answer the question of why the type must be on the LHS. These are unrelated issues. Take F# or OCaml as an example. Both are …