- Computer Programming for Absolute Beginners
- Joakim Wassberg
- 185字
- 2021-06-11 18:38:38
Chapter 4: Software Projects and How We Organize Our Code
When we write software and our program grows, we will need to organize our code so that it is easy to read when we need to maintain it. An application can be hundreds of thousands or millions of lines of code long, so having it all in a single file is impossible. We will need to pide the code into multiple files, but how will we do this? And even if we put the code into separate files, then we'll have lots of files, so we will need to organize them into folders. How can we do this so that the compiler or interpreter can find them? How will we know where to look when we need to edit a part of the application? In this chapter, we will discuss this and learn about some patterns that we can use.
The following topics will be covered in this chapter:
- Understanding code modules
- The concept of a code project
- Working with package managers to share code
- Delving into a namespace
- Using namespaces to avoid naming conflicts
- 我們都是數據控:用大數據改變商業、生活和思維方式
- 大規模數據分析和建模:基于Spark與R
- Python數據挖掘:入門、進階與實用案例分析
- 數據化網站運營深度剖析
- 算法與數據中臺:基于Google、Facebook與微博實踐
- 大話Oracle Grid:云時代的RAC
- 深度剖析Hadoop HDFS
- Dependency Injection with AngularJS
- 智能數據分析:入門、實戰與平臺構建
- 一個64位操作系統的設計與實現
- SQL優化最佳實踐:構建高效率Oracle數據庫的方法與技巧
- IPython Interactive Computing and Visualization Cookbook(Second Edition)
- 從實踐中學習sqlmap數據庫注入測試
- 大數據技術原理與應用:概念、存儲、處理、分析與應用
- MySQL數據庫實用教程