OOP之前是如何管理代码的?

发布于 2024-08-22 11:35:19 字数 95 浏览 13 评论 0原文

非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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

绿光 2024-08-29 11:35:19

在 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.

多彩岁月 2024-08-29 11:35:19

命名空间被广泛使用。

Namespaces are widely used.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文