How would you describe the difference between Managed/Byte Code and Unmanaged/Native Code to a Non-Programmer? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T03:46:08Zhttp://stackoverflow.com/feeds/question/252014http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/252014/how-would-you-describe-the-difference-between-managed-byte-code-and-unmanaged-nat4How would you describe the difference between Managed/Byte Code and Unmanaged/Native Code to a Non-Programmer?Chris Pietschmann2008-10-30T22:39:03Z2009-11-10T23:09:40Z
<p>Sometimes it's difficult to describe some of the things that "us programmers" may think are simple to non-programmers and management types.</p>
<p>So...</p>
<p>How would you describe the difference between Managed Code (or Java Byte Code) and Unmanaged/Native Code to a Non-Programmer?</p>
http://stackoverflow.com/questions/252014/how-would-you-describe-the-difference-between-managed-byte-code-and-unmanaged-nat/252026#252026-6Answer by S.Lott for How would you describe the difference between Managed/Byte Code and Unmanaged/Native Code to a Non-Programmer?S.Lott2008-10-30T22:43:14Z2008-10-31T01:25:34Z<p>"The specific term managed code is particularly pervasive in the Microsoft world."</p>
<p>Since I work in MacOS and Linux world, it's not a term I use or encounter.</p>
<p>The Brad Abrams "<a href="http://blogs.msdn.com/brada/archive/2004/01/09/48925.aspx" rel="nofollow">What is Managed Code</a>" blog post has a definition that say things like ".NET Framework Common Language Runtime".</p>
<p>My point is this: it may not be appropriate to explain it the terms at all. If it's a bug, hack or work-around, it's not very important. Certainly not important enough to work up a sophisticated lay-persons description. It may vanish with the next release of some batch of MS products.</p>
http://stackoverflow.com/questions/252014/how-would-you-describe-the-difference-between-managed-byte-code-and-unmanaged-nat/252031#2520313Answer by Andrew Theken for How would you describe the difference between Managed/Byte Code and Unmanaged/Native Code to a Non-Programmer?Andrew Theken2008-10-30T22:44:59Z2008-10-30T23:44:14Z<p>think of your desk, if you clean it up regularly, there's space to sit what you're actually working on in front of you. if you don't clean it up, you run out of space.</p>
<p>That space is equivalent to computer resources like RAM, Hard Disk, etc.</p>
<p>Managed code allows the system automatically choose when and what to clean up. Unmanaged Code makes the process "manual" - in that the programmer needs to tell the system when and what to clean up.</p>
http://stackoverflow.com/questions/252014/how-would-you-describe-the-difference-between-managed-byte-code-and-unmanaged-nat/252034#2520341Answer by Adam Schmidt for How would you describe the difference between Managed/Byte Code and Unmanaged/Native Code to a Non-Programmer?Adam Schmidt2008-10-30T22:47:00Z2008-10-30T22:47:00Z<p>I'm pretty sure the basic interpretation is:</p>
<ul>
<li>Managed = resource cleanup managed by runtime i.e. Garbage Collection</li>
<li>Unmanaged = clean up after yourself i.e. malloc & free</li>
</ul>
http://stackoverflow.com/questions/252014/how-would-you-describe-the-difference-between-managed-byte-code-and-unmanaged-nat/252037#2520379Answer by Eoin Campbell for How would you describe the difference between Managed/Byte Code and Unmanaged/Native Code to a Non-Programmer?Eoin Campbell2008-10-30T22:48:34Z2008-10-30T22:48:34Z<p>Managed Code == "Mansion House with an entire staff or Butlers, Maids, Cooks & Gardeners to keep the place nice"</p>
<p>Unmanaged Code == "Where I used to live in University"</p>
http://stackoverflow.com/questions/252014/how-would-you-describe-the-difference-between-managed-byte-code-and-unmanaged-nat/252042#2520422Answer by Jon Skeet for How would you describe the difference between Managed/Byte Code and Unmanaged/Native Code to a Non-Programmer?Jon Skeet2008-10-30T22:50:00Z2008-10-30T22:50:00Z<p>Perhaps compare it with investing in the stock market.</p>
<p>You can buy and sell shares yourself, trying to become an expert in what will give the best risk/reward - or you can invest in a fund which is managed by an "expert" who will do it for you - at the cost of you losing some control, and possibly some commission. (Admittedly I'm more of a fan of tracker funds, and the stock market "experts" haven't exactly done brilliant recently, but....)</p>
http://stackoverflow.com/questions/252014/how-would-you-describe-the-difference-between-managed-byte-code-and-unmanaged-nat/252127#2521271Answer by Chris Pietschmann for How would you describe the difference between Managed/Byte Code and Unmanaged/Native Code to a Non-Programmer?Chris Pietschmann2008-10-30T23:22:40Z2008-10-30T23:22:40Z<p>Here's my Answer:</p>
<p>Managed (.NET) or Byte Code (Java) will save you time and money.</p>
<p>Now let's compare the two:</p>
<p><strong>Unmanaged or Native Code</strong></p>
<p>You need to do your own resource (RAM / Memory) allocation and cleanup. If you forget something, you end up with what's called a "Memory Leak" that can crash the computer. A Memory Leak is a term for when an application starts using up (eating up) Ram/Memory but not letting it go so the computer can use if for other applications; eventually this causes the computer to crash.</p>
<p>In order to run your application on different Operating Systems (Mac OSX, Windows, etc.) you need to compile your code specifically for each Operating System, and possibly change alot of code that is Operating System specific so it works on each Operating System.</p>
<p><strong>.NET Managed Code or Java Byte Code</strong></p>
<p>All the resource (RAM / Memory) allocation and cleanup are done for you and the risk of creating "Memory Leaks" is reduced to a minimum. This allows more time to code features instead of spending it on resource management.</p>
<p>In order to run you application on different Operating Systems (Mac OSX, Windows, etc.) you just compile once, and it'll run on each as long as they support the given Framework you are app runs on top of (.NET Framework / <a href="http://mono-project.com" rel="nofollow">Mono</a> or Java).</p>
<p><strong>In Short</strong></p>
<p>Developing using the .NET Framework (Managed Code) or Java (Byte Code) make it overall cheaper to build an application that can target multiple operating systems with ease, and allow more time to be spend building rich features instead of the mundane tasks of memory/resource management.</p>
<p>Also, before anyone points out that the .NET Framework doesn't support multiple operating systems, I need to point out that technically Windows 98, WinXP 32-bit, WinXP 64-bit, WinVista 32-bit, WinVista 64-bit and Windows Server are all different Operating Systems, but the same .NET app will run on each. And, there is also the <a href="http://mono-project.com" rel="nofollow">Mono Project</a> that brings .NET to Linux and Mac OSX.</p>
http://stackoverflow.com/questions/252014/how-would-you-describe-the-difference-between-managed-byte-code-and-unmanaged-nat/252190#2521901Answer by Joel Lucsy for How would you describe the difference between Managed/Byte Code and Unmanaged/Native Code to a Non-Programmer?Joel Lucsy2008-10-31T00:00:41Z2008-10-31T00:00:41Z<p>Unmanaged code is a list of instructions for the computer to follow.
Managed code is a list of tasks for the computer follow that the computer is free to interpret on its own on how to accomplish them.</p>
http://stackoverflow.com/questions/252014/how-would-you-describe-the-difference-between-managed-byte-code-and-unmanaged-nat/252192#2521920Answer by dan gibson for How would you describe the difference between Managed/Byte Code and Unmanaged/Native Code to a Non-Programmer?dan gibson2008-10-31T00:02:58Z2008-10-31T00:02:58Z<p>The big difference is memory management. With native code, you have to manage memory yourself. This can be difficult and is the cause of a lot of bugs and lot of development time spent tracking down those bugs. With managed code, you still have problems, but a lot less of them and they're easier to track down. This normally means less buggy software, and less development time.</p>
<p>There are other differences, but memory management is probably the biggest.</p>
<p>If they were still interested I might mention how a lot of exploits are from buffer overruns and that you don't get that with managed code, or that code reuse is now easy, or that we no longer have to deal with COM (if you're lucky anyway). I'd probably stay way from COM otherwise I'd launch into a tirade over how awful it is.</p>
http://stackoverflow.com/questions/252014/how-would-you-describe-the-difference-between-managed-byte-code-and-unmanaged-nat/252359#2523590Answer by le dorfier for How would you describe the difference between Managed/Byte Code and Unmanaged/Native Code to a Non-Programmer?le dorfier2008-10-31T01:30:29Z2008-10-31T01:36:44Z<p>It's like the difference between playing pool with and without bumpers along the edges. Unless you and all the other players always make perfect shots, you need something to keep the balls on the table. (Ignore intentional ricochets...)</p>
<p>Or use soccer with walls instead of sidelines and endlines, or baseball without a backstop, or hockey without a net behind the goal, or NASCAR without barriers, or football without helmets ...)</p>
http://stackoverflow.com/questions/252014/how-would-you-describe-the-difference-between-managed-byte-code-and-unmanaged-nat/1588971#15889713Answer by MaD70 for How would you describe the difference between Managed/Byte Code and Unmanaged/Native Code to a Non-Programmer?MaD702009-10-19T14:23:57Z2009-11-10T23:09:40Z<p>I'm astonished by what emerges from this discussion (well, not really but rhetorically). Let me add something, even if I'm late.</p>
<p>Virtual Machines (VMs) and Garbage Collection (GC) <strong>are decades old</strong> and <strong>two separate concepts</strong>. Garbage-collected native-code compiled languages exist, even these from decades (canonical example: <a href="http://en.wikipedia.org/wiki/Common%5FLisp" rel="nofollow">ANSI Common Lisp</a>; well, there is at least a <a href="http://www.cs.mu.oz.au/research/mercury/information/papers.html#mazur-thesis" rel="nofollow"><strong>compile-time</strong> garbage-collected</a> declarative language, Mercury - but apparently the masses scream at Prolog-like languages).</p>
<p>Suddenly GCed byte-code based VMs are a panacea for all IT diseases. <a href="http://www.sandboxie.com/" rel="nofollow">Sandboxing of existing binaries</a> (other examples <a href="http://pdos.csail.mit.edu/papers/vx32%3Ausenix08/" rel="nofollow">here</a>, <a href="http://www.ecsl.cs.sunysb.edu/bird/" rel="nofollow">here</a> and <a href="http://code.google.com/p/nativeclient/" rel="nofollow">here</a>)? <a href="http://en.wikipedia.org/wiki/Principle%5Fof%5Fleast%5Fauthority" rel="nofollow">Principle of least authority (POLA)</a>/<a href="http://www.erights.org/" rel="nofollow">capabilities-based security</a>? <a href="http://docs.google.com/gview?a=v&q=cache%3AWgXzRpdXtusJ%3Awww.oberon2005.ru/paper/mf1997-01e.pdf" rel="nofollow">Slim binaries</a> (or its modern variant <a href="http://en.wikipedia.org/wiki/SafeTSA" rel="nofollow">SafeTSA</a>)? <a href="http://en.wikipedia.org/wiki/Region%5Finference" rel="nofollow">Region inference</a>? No, sir: Microsoft & Sun does not authorize us to even only think about such perversions. No, better rewrite our entire software stack for this wonderful(???) new(???) language§/API. As one of our hosts says, it's <strong><a href="http://www.joelonsoftware.com/articles/fog0000000339.html" rel="nofollow">Fire and Motion</a></strong> all over again.</p>
<p>§ Don't be silly: I know that C# is not the only language that target .Net/Mono, it's an <a href="http://en.wikipedia.org/wiki/Hyperbole" rel="nofollow">hyperbole</a>.</p>
<p><strong>Edit:</strong> it is particularly instructive to look at <a href="http://stackoverflow.com/questions/252014/how-would-you-describe-the-difference-between-managed-byte-code-and-unmanaged-nat/252026#252026">comments to this answer</a> by S.Lott in the light of alternative techniques for memory management/safety/code mobility that I pointed out.</p>
<p><strong>My point is that non technical people don't need to be bothered with technicalities at this level of detail.</strong></p>
<p>On the other end, if they are impressed by Microsoft/Sun marketing it is necessary to explain them that they are being fooled - GCed byte-code based VMs are not this novelty as they claim, they don't solve magically every IT problem and alternatives to these implementation techniques exist (some are better).</p>
<p><strong>Edit 2:</strong> Garbage Collection is a memory management technique and, as every implementation technique, need to be understood to be used correctly. Look how, at ITA Software, <a href="http://www.paulgraham.com/carl.html" rel="nofollow">they bypass GC to obtain good perfomance</a>:</p>
<blockquote>
<p>4 - Because we have about 2 gigs of static data we need rapid access to,
we use C++ code to memory-map huge
files containing <strong>pointerless</strong> C structs
(of flights, fares, etc), and then
access these from Common Lisp using
foreign data accesses. A struct field
access compiles into two or three
instructions, so there's not really
any performance. penalty for accessing
C rather than Lisp objects. By doing
this, <strong>we keep the Lisp garbage
collector from seeing the data</strong> (to
Lisp, each pointer to a C object is
just a fixnum, though we do often
temporarily wrap these pointers in
Lisp objects to improve
debuggability). Our Lisp images are
therefore only about 250 megs of
"working" data structures and code.</p>
<p>...</p>
<p>9 - We can do 10 seconds of Lisp computation on a 800mhz box and cons
less than 5k of data. This is because
we pre-allocate all data structures we
need and die on queries that exceed
them. This may make many Lisp
programmers cringe, but with a 250 meg
image and real-time constraints, <strong>we
can't afford to generate garbage</strong>. For
example, rather than using cons, we
use "cons!", which grabs cells from an
array of 10,000,000 cells we've
preallocated and which gets reset
every query.</p>
</blockquote>
<p><strong>Edit 3:</strong> (to avoid misunderstanding) is GC better than fiddling directly with pointers? Most of the time, certainly, but there are alternatives to <strong>both</strong>. Is there a need to bother <strong>users</strong> with these details? I don't see any evidence that this is the case, besides dispelling some marketing hype when necessary.</p>