Why you need a project to run your code?
It was my first day of introduction to programming course. We were told to setup our development environment following the tutorial on the course website. Later that day, with so much eager, I visited the website and downloaded everything it says. First, I installed the JDK and Eclipse. Then I imported libraries into the Eclipse without understanding what I was doing though. I didn’t struggle doing any of these but when our first project was assigned, problems began to emerge. I imported the project into Eclipse just like the libraries but there was red lines at the beginning of the code. I didn’t understand what is src or build too. It was just like gazing through a maze with a dying candle. Too many unknowns and so many concussions. I asked to my friends about the red lines and see if they solved it or not. They said there is no red lines on their code and advised me to delete and reimport everything. When I did that, red lines were gone. Though, I didn’t learn anything. It was just an evasion of the problem.
Later through the course, most of my friends had similar problems and they all solved them with this way. Nobody tried to understand the red lines. We were told to follow after all, not create. It was at my third year when I finally understand the red lines. They were for the library import. The imported assignment project was unable to locate the library and complaining about that. What we should do is changing the properties of the project to make it reference the libraries instead of deleting and reimporting everything. But we were not thought about projects at all. I didn’t know what is a project, why do we need it etc. So, in this blogpost, I will try to explain what even is a programming project/solution and walk you through the build systems of popular programming languages. Let’s begin.
First observation we need to make is that code files are just simple text files. There is nothing special about them. The extensions at the end of the files are just for your operating system to group and associate programs with them. With this information in our mind, let’s look at compilers, interpreters. These tools convert our code to binary which is the real language computers talk in. If you ever used a compiler/interpreter directly you would notice that you can give only one file as the input. You can’t give all the files you have and expect compilers to create the binary. You need to specify the relations between your files to the compiler to make it create your program. And this is the essence of why you need a project/solution for your code files, project/solution is an interface for you to organize your code files in a way that compilers can understand more easily. They are not a part of a compiler but they are there to help you communicate with the compiler more easily. Let’s give an analogy to illustrate all of these.
You probably heard about code being like a recipe for a meal. So I will use and extend this analogy. Let’s first define the computer. Your computer is your kitchen, is has lots of lots of tools and equipment for you to work. Your files are foods and ingredients you have and they are organized in cupboards, cabinets. File extensions are there to help you organize your files in this manner. They also help you not to use wrong tool when working. Since code files are recipes, your oven is the compiler/interpreter. You prepare the meal according to the recipe and cook it with the oven so that you can eat it. But you are directly throwing all the ingredients and expect it to cook, don’t you? You use a pan, a pot to cook. This pan, pot is the project. It is an interface to help you use the oven.
I hope the analogy above clicked some bits in your head. Your code files are not independent of each other, there is a relation between them and you specify these relations by creating a project because it makes it easier compared to directly interacting with your compiler, interpreter. Now let’s dive deeper.
I want to first give you the technical overall term for this concept, build systems. There are lots of different build systems for every language. Since they are independent of the code and you can use whichever you want to organize and automate your code. Here is a list of some build systems for popular programming languages. These tools offer too many features for big scale projects. Side note: Eclipse uses an internal build system as default so it is not included.
PL | BS |
---|---|
C/C++ | Make, CMake |
Java | Ant, Maven, Gradle |
C# | MSBuild |
I intend to provide basics in this blog so you reached to the end. Hope you understand more about why we need to create a project to run our code. Here is bunch of links and tutorials for further reading about build systems.