E
Ed Dixon
No, LOC is not meaningless. It is a measure of size and complexity. The
fact that windows is as large as it is explains why we see so many problems
that MS seems to have so much trouble fixing them.
The larger and more complicated something is, the more difficult it is to
maintain.
Ed
fact that windows is as large as it is explains why we see so many problems
that MS seems to have so much trouble fixing them.
The larger and more complicated something is, the more difficult it is to
maintain.
Ed
Robert Moir said:Puppy said:Anyone know if there's any truth to the rumor about Vista being up to
50 million lines of code?
"lines of code" is a meaningless measurement.
If I code a function in C# it might take five lines. If I code it in
assembler it might take 50.
The assembler version might be the faster version. Despite using more
'lines of code' it will probably be more 'compact' in terms of memory and
processor cycles used.
Lets also consider style:
static void Main(string[] args)
{
Console.WriteLine
(
"Hello World"
);
}
7 lines to say "Hello World" in c#
Or, you could say:
static void Main(string[] args)
{
Console.WriteLine("Hello World");
}
4 lines. Exactly the same bit of code. Except that in the 2nd example its
actually readable.