vote up 1 vote down star

Which programming language(s) were used to code Windows Vista?

flag

32% accept rate
Mostly LOLCODE and INTERCAL, I think. – Paul Tomblin Dec 19 '08 at 13:44
1  
I thought it was mostly Java – Robert Gould Dec 19 '08 at 14:45
2  
Come on Robert, Vista is not that slow... (just kidding) – EricSchaefer Dec 21 '08 at 16:37

6 Answers

vote up -3 vote down check

From working with the Windows CE operating system I'd say its a mix of C for the old school code and interfaces, and a lot of C++ behind the scenes for drivers and other code. It (WinCE) uses C++ in the drivers behind a C interface to the rest of the system.

Now I'm going to guesstimate and say there are many bits of C# and other code in it now as well.

link|flag
WinCE is a different beast to NT. – thomasrutter Nov 18 at 0:29
Yes, but it's still an educated guess based on similarities between the WinCE and Win32 API's and the time frame in which both were developed. If one really wants to know then someone should track down the Windows NT/2000 code that was leaked a few years back. – Daemin Nov 18 at 3:08
I take it from the down mods that people don't like posting educated guesses as answers even though they contain the same languages as the other upmodded answers. – Daemin Nov 18 at 3:09
vote up 14 vote down

Well, the Windows kernel is still almost entirely C. However, there are different aspects that use C++, say some parts of the shell and so forth. The core is C. Other languages, perhaps even .NET might be used in some corners for certain applications but C is the OS language of choice in Windows.

link|flag
There's a research project by Microsoft called Singularity, a 99% managed code (C#) Operating System. <a href="research.microsoft.com/en-us/groups/…; – Pwninstein Dec 19 '08 at 13:41
I guess html comments don't work here, sorry! – Pwninstein Dec 19 '08 at 13:42
Singularity uses some assembly and C to boot up, I assume the runtime/JIT is also written in C and the rest is all C#. Its quite interesting as it statically verifies the managed code before execution, compiles it to native code on the fly and then executes it. I must reread their SIGOPS papers. – Dan Dec 19 '08 at 13:56
Thanks, yeah I know about Singularity. But that's a research project. :) – BobbyShaftoe Dec 19 '08 at 14:25
vote up 2 vote down

I would imagine a combination of C/C++ and Assembly (for device interaction).

link|flag
ugh. C/C++ means absolutely nothing. – Iraimbilanja Feb 14 at 16:33
1  
It's some combination of Objective/C/++/#/++0x/. You know, those languages with that letter in it. – mquander Apr 1 at 21:42
vote up 2 vote down

Multiple languages would have been used to create Vista.

For the low level parts, C and assembly language.

The majority would have been in C / C++.

Some of the higher level applications may have been written in managed code.

link|flag
vote up 0 vote down

As far as I remember, the Windows Research Kernel (which is, afaik, based on XP) is written in C. I assume the rest is too. However, just because the kernel is written in C, doesn't mean the entire operating system is. There are also libraries, tools and applications without which Windows would be pretty useless. Of these, I assume that most are written in C, C++ or C#, though thats just an assumption.

link|flag
vote up 0 vote down

Garry is always right, seriously if Microsoft deny C is getting replaced they should really check with him before they go ahead.

link|flag

Your Answer

Get an OpenID
or

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