Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
8answers
961 views

If functional languages are really concise, why don't they have a better rank in the language shootout game?

I compared the languages at the language shootout game by their code size only. Here is a summary of what I got (shortest first, grouped by similar score). Python, Ruby, JavaScript, Perl, Lua, PHP, ...
10
votes
2answers
221 views

“performance impact” when using a 20K lines single class

This question was asked here before, but none of the answers really tried to answer the actual question asked, so I'm asking it in a different way. Is loading a single class of 20,000 lines with 100s ...
8
votes
7answers
3k views

“code too large” compilation error in java

Is there any maximum size for code in java.. i wrote a function with more than 10,000 lines. Actually , each line assigns a value to an array variable.. arts_bag[10792]="newyorkartworld"; ...
7
votes
9answers
266 views

Is it bad practice to have a long initialization method?

Many people have argued about function size. They say that functions in general should be pretty short. Opinions vary from something like 15 lines to "about one screen", which today is probably about ...
6
votes
2answers
530 views

How to reduce code size of iPhone app?

My iPhone app is getting ready to go to production and we like to cram in as much data as possible. When I poke around the generated .app file for my application I see a file named <executable ...
5
votes
13answers
692 views

Good practice class line count

I know that there is no right answer to this question, I'm just asking for your opinions. I know that creating HUGE class files with thousand lines of code is not a good practice since it's hard to ...
4
votes
1answer
250 views

What does the compiler optimization “constant propagation” mean?

From Effective C++ by Scott Meyers: template<typename T, std::size_t n> class SquareMatrix: private SquareMatrixBase<T> { public: SquareMatrix( ) : ...
4
votes
3answers
439 views

What are some techniques or tools for profiling excessive code size in C/C++ applications?

I have a C++ library that generates much larger code that I would really expect for what it is doing. From less than 50K lines of source I get shared objects that are almost 4 MB and static archives ...
3
votes
1answer
131 views

Haskell Static vs Dynamic Linking in Deployment

Why doesn't cabal install use the flag --enable-shared by default? I've notice that trivial programs when compiled without this flag, get huge in file size. Is there a connection? Is this a design ...
3
votes
3answers
117 views

A way around Qt apps size

A Qt app with the networking library and the GUI library gets to about 10MB; that is, without code. For people with Internet connection like mine, that is a bit inconvenient; specially when it comes ...
2
votes
2answers
229 views

How do the size standard libraries compare for different languages

Someone was recently raving about how great jQuery was and how it made javascript into a pleasure and also how the whole source code was so small(and one file). I looked it up on www.ohloh.net/ and ...
2
votes
4answers
1k views

MAP file analysis - where's my code size comes from?

I am looking for a tool to simplify analysing a linker map file for a large C++ project (VC6). During maintenance, the binaries grow steadily and I want to figure out where it comes from. I suspect ...
1
vote
3answers
86 views

Cost/benefit of parallelization based on code size?

How do you figure out whether it's worth parallelizing a particular code block based on its code size? Is the following calculation correct? Assume: Thread pool consisting of one thread per CPU. ...
0
votes
4answers
114 views

Is using an inline function as fast as directly writing the function body in the code?

class MyClass { public: MyClass() { m_dbLoopStart = 0.0; m_dbLoopStop = 100.0; m_dbLoopStep = 0.001; } // Which of the ...
0
votes
1answer
134 views

.NET CIL Code Size

When looking at the compiled CIL, I notice the code size is included in the compiled CIL. It is commented out. Below is an example C#: static void MakeACar() { Car myCar = new Car(); } CIL: ...