一区二区久久-一区二区三区www-一区二区三区久久-一区二区三区久久精品-麻豆国产一区二区在线观看-麻豆国产视频

JavaScript-世界上誤解最深的語言分析

JavaScript,是世界上最流行的編程語言之一。事實上世界上的每一臺個人電腦都安裝并在頻繁使用至少一個JavaScript解釋器。JavaScript的流行完全是由于他在WWW腳本語言領域中的地位決定的。


Despite its popularity, few know that JavaScript is a very nice dynamic object-oriented general-purpose programming language. How can this be a secret? Why is this language so misunderstood?

盡管它很流行,但是很少有人知道JavaScript是一個非常棒的動態面向對象通用編程語言。這居然能成為一個秘密!這門語言為什么被誤解如此之深?



The Name

名字

The Java- prefix suggests that JavaScript is somehow related to Java, that it is a subset or less capable version of Java. It seems that the name was intentionally selected to create confusion, and from confusion comes misunderstanding. JavaScript is not interpreted Java. Java is interpreted Java. JavaScript is a different language.

Java- 前綴很容易使人聯想到Java,并認為它是Java的子集或簡化版Java??雌饋碜畛踅o它選這個名字是別有用心的,是故意混淆概念、故意制造"誤解"的。JavaScript不是解釋執行的Java。Java是解釋執行的Java。JavaScript是另外一種語言。


JavaScript has a syntactic similarity to Java, much as Java has to C. But it is no more a subset of Java than Java is a subset of C. It is better than Java in the applications that Java (fka Oak) was originally intended for.

JavaScript的語法和Java有相似之處,這就像Java的語法和C很相像一樣。但是它不是Java的子集,就像Java不是C的子集一樣。它在Java(Oak)最初打算進軍的領域中比Java更好。


JavaScript was not developed at Sun Microsystems, the home of Java. JavaScript was developed at NETscape. It was originally called LiveScript, but that name wasn't confusing enough.

JavaScript不是Sun Microsystems的產品,Sun是Java的家。JavaScript是在NETscape被開發出來的。它最初叫LiveScript,嗯……還是這個名字好。


The -Script suffix suggests that it is not a real programming language, that a scripting language is less than a programming language. But it is really a matter of specialization. Compared to C, JavaScript trades performance for expressive power and dynamism.

-Script后綴讓人認為他不是一門真正的編程語言,和一門"編程語言"還有相當的差距。但是這只是應用領域的問題。和C相比,JavaScript是犧牲了性能但換來了豐富的表現力和靈活的形態。


Lisp in C's Clothing

披著C皮的Lisp

JavaScript's C-like syntax, including curly braces and the clunky for statement, makes it appear to be an ordinary procedural language. This is misleading because JavaScript has more in common with functional languages like Lisp or Scheme than with C or Java. It has arrays instead of lists and objects instead of property lists. Functions are first class. It has closures. You get lambdas without having to balance all those parens.

JavaScript的類C語法,包括大括號和語句的形式,讓它看起來像普通的面向過程編程語言。這是一種誤解,因為JavaScript和函數式語言,比如 Lisp 或 Scheme,有更多的相似之處,而不是和C或Java。它使用數組而不是列表,使用對象而不是屬性列表。函數是第一位的,它有閉包(closures),另外你還可以使用lambda表達式。

 




Typecasting

類型轉換

JavaScript was designed to run in NETscape Navigator. Its success there led to it becoming standard equipment in virtually all web browsers. This has resulted in typecasting. JavaScript is the George Reeves of programming languages. JavaScript is well suited to a large class of non-Web-related applications

JavaScript最初被設計成在NETscape Navigator中運行,它在Navigator中的成功引領它成為事實上所有web瀏覽器的標準裝備。這就造就了"類型轉換"JavaScript是編程語言中的 George Reeves(超人),是大量非web程序的稱職之選。




Moving Target

移動

The first versions of JavaScript were quite weak. They lacked exception handling, inner functions, and inheritance. In its present form, it is now a complete object-oriented programming language. But many opinions of the language are based on its immature forms.

JavaScript的最初幾版非常弱,沒有異常處理,沒有內部函數和繼承。現如今,它已經成為完全面向對象的編程語言。但是這門語言的許多思想是基于它不成熟的形式的。


The ECMA committee that has stewardship over the language is developing extensions which, while well intentioned, will aggravate one of the language's biggest problems: There are already too many versions. This creates confusion.

ECMA委員會,這門語言的管家,正在對它進行擴展,也在蓄意惡化它最大的問題:有太多的版本。這是混亂的根源。





Design Errors

設計上的錯誤

No programming language is perfect. JavaScript has its share of design errors, such as the overloading of + to mean both addition and concatenation with type coercion, and the error-prone with statement should be avoided. The reserved word policies are much too strict. Semicolon insertion was a huge mistake, as was the notation for literal regular expressions. These mistakes have led to programming errors, and called the design of the language as a whole into question. Fortunately, many of these problems can be mitigated with a good lint program.

沒有什么編程語言是完美的。JavaScript也有它設計上的錯誤,比如重載的+號隨著類型的不同既表示"相加"又表示"連接",和本該避免的有錯誤傾向的 with 語句。它的保留字策略過于嚴格。分號的插入是一個巨大的錯誤,比如作為字面正則表達式的符號時。這些失誤已直接導致編程中的錯誤,也使這門語言的整體設計遭人質疑。還好,這些問題中有許多都可以在良好的 lint 程序中得以緩解。


The design of the language on the whole is quite sound. Surprisingly, the ECMAScript committee does not appear to be interested in correcting these problems. Perhaps they are more interested in making new ones.

這門語言的整體設計(上的問題)是相當明顯的。奇怪的是ECMAScript委員會并沒有對修正其中存在的問題表現出太大的興趣,也許他們更熱衷于制造新的問題。


 


Lousy Implementations

糟糕的實現

Some of the earlier implementations of JavaScript were quite buggy. This reflected badly on the language. Compounding that, those implementations were embedded in horribly buggy web browsers.

JavaScript的一些早期實現有許多bug,這反過來對語言本身產生了很壞的影響。更糟糕的是這些滿是bug的實現是嵌入在滿是bug的web瀏覽器中的。




Bad Books

糟糕的書

Nearly all of the books about JavaScript are quite awful. They contain errors, poor examples, and promote bad practices. Important features of the language are often explained poorly, or left out entirely. I have reviewed dozens of JavaScript books, and I can only recommend one: JavaScript: The Definitive Guide (4th Edition) by David Flanagan. (Attention authors: If you have written a good one, please send me a review copy.)

幾乎所有的JavaScript書都是相當可怕的。它們包含錯誤,包含不好的例子,并鼓勵不好的做法。JavaScript語言的一些重要特性它們要么沒有解釋清楚,要么根本就沒有提及。我看過很多JavaScript的書,但我只能推薦一本:David Flanagan著的 JavaScript: The Definitive Guide (4th Edition)  (《JavaScript權威指南 第四版》)。(作者們請注意:如果你們寫出了好書請發給我一份副本,我給你們校對。)




Substandard Standard

準標準”的標準

The official specification for the language is published by ECMA. The specification is of extremely poor quality. It is difficult to read and very difficult to understand. This has been a contributor to the Bad Book problem because authors have been unable to use the standard document to improve their own understanding of the language. ECMA and the TC39 committee should be deeply embarrassed.

ECMA公布的官方語言規范的質量極其的差。不僅難讀而且極其難懂。它可為那些"糟糕的書"做出了不小的貢獻,因為那些作者無法通過這個標準文檔來更深地理解這門語言。ECMA和TC39應該為此感到非常尷尬。




Amateurs

業余者

Most of the people writing in JavaScript are not programmers. They lack the training and discipline to write good programs. JavaScript has so much expressive power that they are able to do useful things in it, anyway. This has given JavaScript a reputation of being strictly for the amateurs, that it is not suitable for professional programming. This is simply not the case.

使用JavaScript的人大多不是程序員,他們缺少寫良好程序的培訓和訓練。JavaScript有非常強大的表現力,不管怎樣他們也能使用它做有用的事情。這給了JavaScript一個”全然適合業余愛好者而不適合專業程序員“的名聲。這很明顯是一個錯誤。




Object-Oriented

面向對象

Is JavaScript object-oriented? It has objects which can contain data and methods that act upon that data. Objects can contain other objects. It does not have classes, but it does have constructors which do what classes do, including acting as containers for class variables and methods. It does not have class-oriented inheritance, but it does have prototype-oriented inheritance.

JavaScript是面向對象的嗎?它有對象,它的對象可以包含數據以及對數據進行操作的方法,對象也可以包含其他的對象。它沒有類,但是它有構造函數來做類的事情,包括聲明類的變量和方法。它沒有面向類的繼承,但是他有面向原型的繼承。


The two main ways of building up object systems are by inheritance (is-a) and by aggregation (has-a). JavaScript does both, but its dynamic nature allows it to excel at aggregation.

構建對象系統的兩大主要方法是繼承(is-a)和聚合(has-a)。這兩者JavaScript都有,但是它的動態天性允許有比聚合更好的實現方式。


Some argue that JavaScript is not truly object oriented because it does not provide information hiding. That is, objects cannot have private variables and private methods: All members are public.

一些關于JavaScript不是真的面向對象的爭論其理由是它沒有提供信息隱藏。也就是說JavaScript的對象沒有私有變量和私有方法:它的所有成員都是公開的。


But it turns out that JavaScript objects can have private variables and private methods. (Click here now to find out how.) Of course, few understand this because JavaScript is the world's most misunderstood programming language.

但是事實是JavaScript 的對象可以有私有變量和私有方法(點擊這里來看如何實現)。當然,之所以很少有人知道這個是因為JavaScript是世界上誤解最深的語言嘛。


Some argue that JavaScript is not truly object oriented because it does not provide inheritance. But it turns out that JavaScript supports not only classical inheritance, but other code reuse patterns as well.

另一些關于JavaScript不是真的面向對象的爭論其理由是它沒有提供繼承。但是事實是JavaScript不但支持經典的繼承,而且支持其他一些代碼重用的模式。

覺得這篇文章很不錯,轉載過來與大家一起分享.

英文地址:http://www.crockford.com/Javascript/Javascript.html

中文翻譯地址:http://blog.csdn.NET/uoyevoli/archive/2006/05/19/744915.ASPx 譯者:袁曉輝

JavaScript技術JavaScript-世界上誤解最深的語言分析,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 亚洲六月丁香六月婷婷蜜芽 | 国产真实乱在线更新 | 精品国产一区二区三区在线观看 | 色多多www网站 | 99精品视频在线在线视频观看 | 久久久久久亚洲精品 | 亚洲视频国产视频 | 美女福利视频一区 | 99久久无色码中文字幕 | 日本在线www| 国产综合精品一区二区 | 91专区| 深爱激情五月婷婷 | 欧美一区二区三区婷婷月色 | 国产一区二区三区视频 | 国产熟睡乱子伦视频观看看 | 国产精品白浆在线播放 | www色在线 | 久久久五月 | 久久综合九色综合97伊人麻豆 | 久久久精品免费国产四虎 | 亚洲图片一区 | 国产亚洲青色国产 | 国产福利合集 | 国产亚洲精品高清在线 | 国产成人精品一区二区视频 | 日本aⅴ永久免费网站www | 久久亚洲精品永久网站 | 91高清视频 | 91福利国产在线观一区二区 | 最新亚洲一区二区三区四区 | 99视频热| 香蕉久久久 | 五月激情婷婷丁香 | 久久久91精品国产一区二区三区 | 黄视频在线观看免费 | 白白在线成人永久视频 | 亚洲一区二区成人 | 精品视频在线一区 | 国内小情侣一二三区在线视频 | 好属妞这里只有精品久久 |