Skip to main content
71 votes

What are the benefits of multi-file programming?

There are a lot of technical reasons behind using multiple files when writing large complex systems. All of them are meaningless in the face of the best reason to use multiple files: Readability. ...
candied_orange's user avatar
28 votes

What are the benefits of multi-file programming?

The question falls into same category as why buildings are not build from one piece of rock but a bunch of bricks? Answer: easier to navigate than scroll through one huge file make recompile works ...
Polar Bear's user avatar
21 votes

What are the benefits of multi-file programming?

The other answers are fine, but something they're missing is actual technical limitations. For example, you can't actually save all of the code for my day-job application in one file - it's bigger ...
Telastyn's user avatar
  • 110k
11 votes

What are the benefits of multi-file programming?

I have been told to write large applications in several different files. They say it will run faster. What makes it run faster? Also does a multifile application ACTUALLY run faster than a singlefile ...
pjc50's user avatar
  • 15.3k
2 votes

What are the benefits of multi-file programming?

Advantages of using multiple files for a program are numerous.For instance: if you write code for a class in a separate file, you can use that class in multiple programs. It increases reusability of ...
Mehedi Hasan Shifat's user avatar
1 vote

What are the benefits of multi-file programming?

Another significant reason to use multiple files that somehow no one has mentioned: When you work on a software development project with a team, it is very common to use a version control system such ...
user45623's user avatar
  • 398

Only top scored, non community-wiki answers of a minimum length are eligible