vote up 32 vote down star
16

Why was Google's Chrome browser written almost entirely in C++ and not C# or Java?

flag
2  
This seems like a fair question for someone who doesn't fully understand the differences & benefits/costs between managed and unmanaged code. – Rex M Mar 8 at 5:09
6  
Why would you think that SO users can guess at Google's reasoning? – Jay Bazuzi Mar 8 at 5:22
6  
closing both questions for being duplicates of each other is rather stupid! just close one and leave the other – hasen j Mar 8 at 7:25
3  
Because >= 30 answers were posted. That automatically forces wiki mode, under the assumption that if there was a real answer then it would already have been posted. – Shog9 Mar 13 at 20:14
show 11 more comments

36 Answers

prev 1 2
vote up 114 vote down

Google Chrome is based on the open-source Webkit rendering engine (also used by Safari), and that is written in C++.

link|flag
1  
The question remains, why did they choose webkit instead of something written in C# or java! – hasen j Mar 8 at 8:20
4  
Because there is no such thing as a fast, complete, and standard-compliant rendering engine written in C# or Java. – oefe Mar 8 at 8:56
2  
Eh. They based the core on KHTML anyway. – Bernard Mar 8 at 10:33
1  
As a curiosity, rumours say that WebKit is going to be added to Java7 too. – Esko Mar 8 at 10:51
1  
I'm not sure I still understand why Chrome should be written in C++ simply because it uses Webkit which is C++-based. Safari (Mac), for instance, is an Cocoa app written largely in Objective-C (although the Webkit code is still C++) – Nocturne Mar 8 at 13:16
show 8 more comments
vote up 11 vote down

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

link|flag
2  
@Jay: Correct me if I'm wrong, but if you built a browser in C# and designed it to run each tab in a separate process, would you not lose most of the benefit of the .NET environment? Or can the .NET VM span multiple OS processes? – j_random_hacker Mar 8 at 6:24
show 9 more comments
vote up 23 vote down

Because C++ is a fast and very popular language?

link|flag
2  
@Sung - A popular language means that you will likely be able to find programmers able to support it in the future. The ready availability of a large pool of talent is a very important consideration when deciding on a language. – oxbow_lakes Mar 8 at 12:10
2  
C++ is th eonly language of choice for people who care about code quality and freedom to express their designs. C# might seem cool to a newbie but it soon runs out of steam and degenerates into massive verbosity when you run into the barriers inherent in the language. – Jimmy J Mar 8 at 12:45
3  
if MS is not using C# for their browser, Office or ever calculator in Vista why would Google use it? – Nazgob Mar 8 at 12:57
show 7 more comments
vote up 9 vote down

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.

link|flag
show 5 more comments
vote up 23 vote down

Performance.

Java or .NET runtime need to start up and the programs are interpreted by the runtime. This decreases performance.

link|flag
4  
C# is not interpreted, it's JIT compiled, gives it a chance at beating native C++ programs, since it can optimize for the exact CPU. Many .NET programs have fantastic performance. (Maybe Java, too; not my area of expertise). – Jay Bazuzi Mar 8 at 5:19
1  
Niyaz is right about start-up time though. The initialization time to load up the .NET dependencies, support assemblies and cache them all is high. Once that is done, the execution time of .NET is usually on par with unmanaged code, but there is a startup cost. – Rex M Mar 8 at 5:33
1  
I tend to open my browser once a day. I'd be glad to have 3 more seconds for JVM or CLR startup, if there are no more security flaws caused by buffer overruns and the like which you don't tend to get in managed languages. – Daniel Schneller Mar 8 at 12:50
2  
"if there are no more security flaws caused by buffer overruns and the like which you don't tend to get in managed languages." Funny, so unmanaged languages automatically give you buffer overruns huh? And all this time I thought it was poor programming... – GMan Jun 23 at 4:27
show 6 more comments
vote up 47 vote down

Because writing it in C# or Java would have added a huge dependency without giving them anything in return.

link|flag
4  
C# & Java add significant dependencies, and give you a LOT in return. Fewer bugs from stupid language issues, garbage collection, a rich, sane-ish library to program against, better IDE/tools. – Jay Bazuzi Mar 8 at 5:17
1  
From the user's point of view, I'd agree that they add dependencies that C++ doesn't. Most of the target audience just wants to download and run a browser. – MandyK Mar 8 at 5:21
2  
@kronoz: I use C#. It's great. Etc. But I don't pretend it makes all the bad scary parts of programming magically go away, or even that it makes all things easier. Please note that no one here has yet given a single concrete reason why one might want to use it for writing a web browser... – Shog9 Mar 8 at 16:53
2  
@kronoz: "ISO" is a Microsoft con game - C# is a standard, .Net certainly isn't and without it C# isn't much use. – Jimmy J Mar 8 at 20:30
4  
Even if .NET was a ISO standard, that wouldn't solve the availability issue. So far, two implementations exist. One up to date, and one playing catch-up. That is not good enough if they want to be able to port to arbitrary platforms in the future. – jalf Mar 14 at 15:36
show 11 more comments
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.