Why was Google's Chrome browser written almost entirely in C++ and not C# or Java?
|
16
|
|||||||||||||||||
|
|
|
Google Chrome is based on the open-source Webkit rendering engine (also used by Safari), and that is written in C++. |
||||||||||||||||||||
|
|
|
Google employs OS-like features in its browser. Like process isolation in its tabs, one tab won't crash other tabs, even the plugins are on separate process. If you'll develop something on that level, C++ could give you the most hooks on OS |
||||
|
|
|
Because C++ is a fast and very popular language? |
||||||||||||
|
|
|
Because C++ is much faster than either of those languages and they didn't want such a huge dependency. The browser is designed for users more than anything and a lot of people still don't know how to download Java. There is also the guess that they have more programmers who are more exceptional in C++ than in C# or Java. I personally would have wrote it in Clojure :p. |
|||
|
|
Performance. Java or .NET runtime need to start up and the programs are interpreted by the runtime. This decreases performance. |
||||||||||||||||
|
|
|
Because writing it in C# or Java would have added a huge dependency without giving them anything in return. |
||||||||||||||||||||
|
