OOP之前是如何管理代码的?
非OOP最常见的问题是:
当项目变得非常庞大时,如何防止函数名冲突?
对于OOP,我们可以简单地将函数放入不同的类中,但是过程编程的方法是什么?
The most common issue for non-OOP is:
how to prevent conflict of function name when the project becomes extremely huge?
For OOP we can simply put the functions into different classes,but what's the approach for procedure programming?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 C++ 中,如果不使用 OOP,您将使用命名空间。
在 C 语言中,人们倾向于创建带有前缀的函数(例如“sqlite3_some_function_name”)和/或标记非公共函数
static
。无论如何,当对函数使用长且描述性的名称时,没有两个函数将具有相同的名称或者如果它们具有相同的名称,它们是相同的并且可以删除其中之一。
In C++, without using OOP, you would use namespaces.
In C, people tend to create functions with prefixes (e.g. "sqlite3_some_function_name") and/or marking non-public functions
static
.Anyway, when using long and descriptive names for functions, no two functions will have the same name OR if they do, they're identical and one of them can be removed.
命名空间被广泛使用。
Namespaces are widely used.