TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Why Static Typing Came Back (2022) [video]

2 点作者 plainOldText超过 1 年前

1 comment

Rochus超过 1 年前
Interesting arguments and he apparently still prefers dynamic languages, but I was surprised that there was no mention of Smalltalk which was a rather important technology in the nineties and in fact the first dynamic OO language. The increase of compile speed might well be part of the explanation that static typing is again more popular; but the author himself mentions Delphi which had (like other Pascal compilers) a very fast compiler even in the nineties and before; and even with C++ you could get very fast compile times depending how you managed headers and templates. The advantage of better IDE support with static typing is often mentioned and a good argument, but by the end of the day it&#x27;s just much more robust to build a large software system in a statically typed language, and people got more aware of this during the last twenty years because the ever bigger applications built with JS. There was an interesting documentary about TypeScript posted on HN recently (<a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=37626689">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=37626689</a>) where the responsibles made it clear that building a system like e.g. VSCode would not have been possible with plain JS. Gradual typing might be a good thing to integrate teams with both static and dynamic typing preferences, but the result is still a dynamically typed runtime.