Why was Google's Chrome browser written almost entirely in C++ and not C# or Java?
|
16
|
|||||||||||||||||
|
|
|
For almost the same reasons that surgeons use scalpels and not chainsaws. |
|||
|
|
|
|
Leveraging Existing Software Chrome leverages the open source WebKet rendering engine, which is written in C++. Speed Speed is a primary design goal of Chrome. C# and Java can be made to be very fast, but at the margins that Chrome is working at they can't be made as fast as C++ code. Multi-Platform Compatability Chrome is meant to be available on many platforms: Linux, Mac, etc, not just Windows. While Mono is a viable option for C# on linux, it adds significant complexities and trade-offs. Java is an option but the promise of "write once, run anywhere" has been largely unfulfilled. Multi-platform development using C++ is a known quantity with many successful examples (Mozilla, Apache, Photoshop, etc.) |
|||
|
|
|
|
When Google wanted their own browser, they did what any other company would do, they hired someone with experience developing web browsers to lead their project. Ben Goodger, who was previously the lead Firefox developer, obviously had a lot more experince in C++ than C# or java (since Firefox is written in C++). Its great to think of Google as so full of super-geniuses that they let their tea ladies design brand new browsers in each of the available languages (in the time they're waiting for the kettle to boil) and then released the fastest to us as Chrome; but the tangled twisted mess of web languages (HTML, CSS and Javascript) really is very hard to interpret. |
|||
|
|
|
|
Portability and performance are definitely one of the many reasons. I think Java would have been great except that you're now relying on the Java VM which is a punch in the face when you compare such a product to FireFox or IE which are standalone products. I've worked with companies that stay away from anything from Microsoft. To them it's an unnecessary dependency. Using .NET framework may not be extensible enough for what you're doing. You may want to roll out your own algorithms and logic instead of using built-in features. This is especially important for such product as a web browser which competes with giants such as FireFox, Opera, Internet Explorer and etc. You have to make it fast. You have to make it efficient. Otherwise you labor will go to waste as you're not going to be able to compete. This is why having your own framework is a better thing since it allows you to make it as good as you want it w/o getting stuck with what you have to use. |
|||
|
|
|
|
I imagine they made a trade-off of short-term benefits such as performance over long-term benefits like maintainability. C++ might be faster now than C#/Java code, but as hardware advances speed will be less relevent a benefit. It creates a terrible situation for security in that they are effectively snubbing the billions in IS work done to protect the .NET/Java Platforms from exploits. There is no way they can keep up. We might effectively be embracing the next ActiveX browser security hole by embracing Chrome. |
|||
|
|
|
|
anybody here tried Opera as a web browser? i'd consider it a major Java app and it works on every computer i own. works on phones too, btw. also, Open Office anyone? that's a big Java app. being able to write once and run everywhere is my primary motivation for using Java. everywhere meaning: every desktop, every server and every handset. in my career i have never worked for a company that prioritized performance over portability of code. |
|||
